Skip to content

Commit

Permalink
Merge pull request #17 from roerlemans/laravel-11
Browse files Browse the repository at this point in the history
Add laravel 11 support
  • Loading branch information
mtvs authored May 14, 2024
2 parents be46255 + 50be0fd commit dc82f75
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ jobs:
strategy:
matrix:
php: [8.0, 8.1, 8.2]
illuminate: [^8.0, ^9.0, ^10.0]
illuminate: [^8.0, ^9.0, ^10.0, ^11.0]
exclude:
- php: 8.0
illuminate: ^10.0
- php: 8.0
illuminate: ^11.0
- php: 8.1
illuminate: ^11.0

name: PHP ${{ matrix.php }} & Illuminate ${{ matrix.illuminate }}

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
}
],
"require": {
"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": {
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^8.3|^9.0|^10.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^8.3|^9.0|^10.0|^11.0",
"mockery/mockery": "^1.0"
},
"autoload": {
Expand Down

0 comments on commit dc82f75

Please sign in to comment.