Skip to content

Commit

Permalink
Laravel 11.x Compatibility (#1424)
Browse files Browse the repository at this point in the history
* Laravel 11 support

* exclude L11 on PHP8.1

* dependency updates
  • Loading branch information
austintoddj committed Mar 12, 2024
1 parent bd826fb commit b98cda4
Show file tree
Hide file tree
Showing 8 changed files with 1,731 additions and 1,273 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
php: [7.3, 7.4, 8.0, 8.1, 8.2]
laravel: [^6.0, ^7.0, ^8.0, ^9.0, ^10.0]
laravel: [^6.0, ^7.0, ^8.0, ^9.0, ^10.0, ^11.0]
include:
- laravel: ^6.0
testbench: ^4.0
Expand All @@ -28,21 +28,31 @@ jobs:
testbench: ^7.0
- laravel: ^10.0
testbench: ^8.0
- laravel: ^11.0
testbench: ^9.0
exclude:
- php: 7.3
laravel: ^9.0
- php: 7.3
laravel: ^10.0
- php: 7.3
laravel: ^11.0
- php: 7.4
laravel: ^9.0
- php: 7.4
laravel: ^10.0
- php: 7.4
laravel: ^11.0
- php: 8.0
laravel: ^10.0
- php: 8.0
laravel: ^11.0
- php: 8.1
laravel: ^6.0
- php: 8.1
laravel: ^7.0
- php: 8.1
laravel: ^11.0
- php: 8.2
laravel: ^6.0
- php: 8.2
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0"
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"laravel/legacy-factories": "^1.0",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.0"
},
"autoload": {
Expand Down
Loading

0 comments on commit b98cda4

Please sign in to comment.