Skip to content

Commit

Permalink
Support Laravel 9.x (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsferruzza authored Feb 14, 2022
1 parent e8d64ae commit de9d66a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/run-tests-l8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,19 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 7.4, 7.3]
laravel: [8.*]
php: [8.1, 8.0, 7.4, 7.3]
laravel: [9.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 9.*
php: 7.4
- laravel: 9.*
php: 7.3
- laravel: 8.*
php: 8.1
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*

Expand Down
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"require": {
"php": "^7.3 || ^8.0",
"guzzlehttp/guzzle": "~6.0 || ~7.0",
"illuminate/support": "5.7.* || 5.8.* ||^6.0 || ^7.0 || ^8.0",
"illuminate/support": "5.7.* || 5.8.* ||^6.0 || ^7.0 || ^8.0 || ^9.0",
"symfony/dotenv": "^4.2 || ^5.1"
},
"require-dev": {
Expand Down Expand Up @@ -46,7 +46,10 @@

},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
Expand Down

0 comments on commit de9d66a

Please sign in to comment.