Skip to content

Commit

Permalink
Laravel 10.x Compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
codedge authored Feb 8, 2023
2 parents be83502 + 2f94f03 commit 597537d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ jobs:
strategy:
matrix:
php: ['8.0', '8.1']
laravel: [8.*, 9.*]
laravel: [8.*, 9.*, 10.*]
dependency-version: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
exclude:
- laravel: 10.*
php: 8.0
- laravel: 9.*
php: 7.4

Expand Down
10 changes: 4 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
},
"require": {
"php": "^8.0 || ^8.1",
"illuminate/support": "^8.0 || ^9.0"
"illuminate/support": "^8.0 || ^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^6.25.1",
"phpunit/phpunit": "^9.6.0"
"orchestra/testbench": "^6.25.1|^8.0",
"phpunit/phpunit": "^9.6.0|^9.5.10"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand All @@ -38,9 +38,7 @@
}
},
"config": {
"allow-plugins": {

},
"allow-plugins": [],
"sort-packages": true
},
"extra": {
Expand Down

0 comments on commit 597537d

Please sign in to comment.