Skip to content

Commit

Permalink
Support Laravel 11 (#8)
Browse files Browse the repository at this point in the history
* Support Laravel 11

* wip

* wip
  • Loading branch information
dmason30 authored Mar 7, 2024
1 parent ae9d4b3 commit f237349
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ jobs:
matrix:
os: [ubuntu-latest]
php: ['8.3', '8.2', '8.1', '8.0']
laravel: [^8.0, ^9.0, ^10.0]
laravel: [^8.0, ^9.0, ^10.0, ^11.0]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
laravel: ^11.0
- php: 8.0
laravel: ^11.0
- php: 8.0
laravel: ^10.0

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
],
"require": {
"php": "^8.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0"
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"vimeo/psalm": "^4.1"
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit f237349

Please sign in to comment.