Skip to content

Commit

Permalink
removed laravel 8
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Feb 14, 2023
1 parent a4915d3 commit 1b9a56e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 33 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ jobs:
strategy:
matrix:
php: ['8.0', '8.1', '8.2']
laravel: [8.*, 9.*, 10.*]
laravel: [9.*, 10.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.6
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
Expand Down
61 changes: 31 additions & 30 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,64 @@
{
"name":"akaunting/laravel-money",
"description":"Currency formatting and conversion package for Laravel",
"keywords":[
"name": "akaunting/laravel-money",
"description": "Currency formatting and conversion package for Laravel",
"keywords": [
"laravel",
"money",
"currency",
"format",
"convert"
],
"license":"MIT",
"authors":[
"license": "MIT",
"authors": [
{
"name":"Denis Duliçi",
"email":"[email protected]",
"homepage":"https://akaunting.com",
"role":"Developer"
"name": "Denis Duliçi",
"email": "[email protected]",
"homepage": "https://akaunting.com",
"role": "Developer"
}
],
"require":{
"require": {
"php": "^8.0",
"illuminate/contracts": "^8.67|^9.0|^10.0",
"illuminate/support": "^8.67|^9.0|^10.0",
"illuminate/validation": "^8.67|^9.0|^10.0",
"illuminate/view": "^8.67|^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/validation": "^9.0|^10.0",
"illuminate/view": "^9.0|^10.0",
"vlucas/phpdotenv": "^5.4.1"
},
"require-dev":{
"phpunit/phpunit":"^9.5",
"orchestra/testbench": "^6.23|^7.4|^8.0",
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.4|^8.0",
"vimeo/psalm": "^4.23"
},
"autoload":{
"psr-4":{
"autoload": {
"psr-4": {
"Akaunting\\Money\\": "src"
},
"files":[
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Akaunting\\Money\\Tests\\": "tests"
}
"psr-4": {
"Akaunting\\Money\\Tests\\": "tests"
}
},
"extra":{
"laravel":{
"providers":[
"extra": {
"laravel": {
"providers": [
"Akaunting\\Money\\Provider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm"
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm"
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 1b9a56e

Please sign in to comment.