Skip to content

Commit e9959e0

Browse files
authored
Supports Laravel 12 (#1803)
* Supports Laravel 12 Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> --------- Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 3e861ad commit e9959e0

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

.github/workflows/tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [8.1, 8.2, 8.3, 8.4]
20-
laravel: [10, 11]
20+
laravel: [10, 11, 12]
2121
include:
2222
- php: 8.2
2323
laravel: 9
@@ -28,6 +28,8 @@ jobs:
2828
exclude:
2929
- php: 8.1
3030
laravel: 11
31+
- php: 8.1
32+
laravel: 12
3133
- php: 8.4
3234
laravel: 10
3335

composer.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
"php": "^8.0",
1818
"ext-json": "*",
1919
"firebase/php-jwt": "^6.4",
20-
"illuminate/auth": "^9.21|^10.0|^11.0",
21-
"illuminate/console": "^9.21|^10.0|^11.0",
22-
"illuminate/container": "^9.21|^10.0|^11.0",
23-
"illuminate/contracts": "^9.21|^10.0|^11.0",
24-
"illuminate/cookie": "^9.21|^10.0|^11.0",
25-
"illuminate/database": "^9.21|^10.0|^11.0",
26-
"illuminate/encryption": "^9.21|^10.0|^11.0",
27-
"illuminate/http": "^9.21|^10.0|^11.0",
28-
"illuminate/support": "^9.21|^10.0|^11.0",
20+
"illuminate/auth": "^9.21|^10.0|^11.0|^12.0",
21+
"illuminate/console": "^9.21|^10.0|^11.0|^12.0",
22+
"illuminate/container": "^9.21|^10.0|^11.0|^12.0",
23+
"illuminate/contracts": "^9.21|^10.0|^11.0|^12.0",
24+
"illuminate/cookie": "^9.21|^10.0|^11.0|^12.0",
25+
"illuminate/database": "^9.21|^10.0|^11.0|^12.0",
26+
"illuminate/encryption": "^9.21|^10.0|^11.0|^12.0",
27+
"illuminate/http": "^9.21|^10.0|^11.0|^12.0",
28+
"illuminate/support": "^9.21|^10.0|^11.0|^12.0",
2929
"lcobucci/jwt": "^4.3|^5.0",
3030
"league/oauth2-server": "^8.5.3",
3131
"nyholm/psr7": "^1.5",
@@ -35,9 +35,9 @@
3535
},
3636
"require-dev": {
3737
"mockery/mockery": "^1.0",
38-
"orchestra/testbench": "^7.35|^8.14|^9.0",
38+
"orchestra/testbench": "^7.35|^8.14|^9.0|^10.0",
3939
"phpstan/phpstan": "^1.10",
40-
"phpunit/phpunit": "^9.3|^10.5"
40+
"phpunit/phpunit": "^9.3|^10.5|^11.5"
4141
},
4242
"autoload": {
4343
"psr-4": {

0 commit comments

Comments
 (0)