Skip to content

Commit b98cda4

Browse files
authored
Laravel 11.x Compatibility (#1424)
* Laravel 11 support * exclude L11 on PHP8.1 * dependency updates
1 parent bd826fb commit b98cda4

File tree

8 files changed

+1731
-1273
lines changed

8 files changed

+1731
-1273
lines changed

.github/workflows/tests.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
php: [7.3, 7.4, 8.0, 8.1, 8.2]
19-
laravel: [^6.0, ^7.0, ^8.0, ^9.0, ^10.0]
19+
laravel: [^6.0, ^7.0, ^8.0, ^9.0, ^10.0, ^11.0]
2020
include:
2121
- laravel: ^6.0
2222
testbench: ^4.0
@@ -28,21 +28,31 @@ jobs:
2828
testbench: ^7.0
2929
- laravel: ^10.0
3030
testbench: ^8.0
31+
- laravel: ^11.0
32+
testbench: ^9.0
3133
exclude:
3234
- php: 7.3
3335
laravel: ^9.0
3436
- php: 7.3
3537
laravel: ^10.0
38+
- php: 7.3
39+
laravel: ^11.0
3640
- php: 7.4
3741
laravel: ^9.0
3842
- php: 7.4
3943
laravel: ^10.0
44+
- php: 7.4
45+
laravel: ^11.0
4046
- php: 8.0
4147
laravel: ^10.0
48+
- php: 8.0
49+
laravel: ^11.0
4250
- php: 8.1
4351
laravel: ^6.0
4452
- php: 8.1
4553
laravel: ^7.0
54+
- php: 8.1
55+
laravel: ^11.0
4656
- php: 8.2
4757
laravel: ^6.0
4858
- php: 8.2

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
"require": {
2424
"php": "^7.3|^8.0",
2525
"ext-json": "*",
26-
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0"
26+
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
2727
},
2828
"require-dev": {
2929
"laravel/legacy-factories": "^1.0",
3030
"mockery/mockery": "^1.4",
31-
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
31+
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
3232
"phpunit/phpunit": "^9.0|^10.0"
3333
},
3434
"autoload": {

0 commit comments

Comments
 (0)