Skip to content

Commit

Permalink
Drop support for laravel 9 (#42)
Browse files Browse the repository at this point in the history
* Drop support for laravel 9

* Do not test against laravel 11 (yet)
  • Loading branch information
mateusjunges authored Jan 28, 2024
1 parent 0b00b12 commit 5811ade
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@ jobs:

strategy:
matrix:
php: [8.0, 8.1]
laravel: [10.*, 9.*]
php: [8.2, 8.3]
laravel: [10.*]
dependency-version: [prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
exclude:
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
}
],
"require": {
"php": "^8.2",
"illuminate/auth": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0"
"php": "^8.2|^8.3",
"illuminate/auth": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0",
Expand Down

0 comments on commit 5811ade

Please # to comment.