Skip to content

Commit 7d6ffa3

Browse files
authored
Supports Laravel 12 (#277)
* Supports Laravel 12 Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com> * Update composer.json --------- Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
1 parent 0c38f3a commit 7d6ffa3

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
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
@@ -30,6 +30,8 @@ jobs:
3030
laravel: 10
3131
- php: 8.1
3232
laravel: 11
33+
- php: 8.1
34+
laravel: 12
3335

3436
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
3537

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
],
1212
"require": {
1313
"php": "^8.0",
14-
"illuminate/console": "^9.21|^10.0|^11.0",
15-
"illuminate/filesystem": "^9.21|^10.0|^11.0",
16-
"illuminate/support": "^9.21|^10.0|^11.0",
17-
"illuminate/validation": "^9.21|^10.0|^11.0",
14+
"illuminate/console": "^9.21|^10.0|^11.0|^12.0",
15+
"illuminate/filesystem": "^9.21|^10.0|^11.0|^12.0",
16+
"illuminate/support": "^9.21|^10.0|^11.0|^12.0",
17+
"illuminate/validation": "^9.21|^10.0|^11.0|^12.0",
1818
"symfony/console": "^6.0|^7.0"
1919
},
2020
"require-dev": {
21-
"orchestra/testbench": "^7.35|^8.15|^9.0",
22-
"phpunit/phpunit": "^9.3|^10.4|^11.0"
21+
"orchestra/testbench": "^7.35|^8.15|^9.0|^10.0",
22+
"phpunit/phpunit": "^9.3|^10.4|^11.5"
2323
},
2424
"autoload": {
2525
"psr-4": {

0 commit comments

Comments
 (0)