Skip to content

Commit bb5aae5

Browse files
Laravel 12.x Compatibility (#126)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent b7e5556 commit bb5aae5

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.github/workflows/test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,20 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
php: ['8.1', '8.2', '8.3']
19-
laravel: ['10.*', '11.*']
19+
laravel: ['10.*', '11.*', '12.*']
2020
dependency-version: [prefer-lowest, prefer-stable]
2121
include:
2222
- laravel: 10.*
2323
testbench: 8.*
2424
- laravel: 11.*
2525
testbench: 9.*
26+
- laravel: 12.*
27+
testbench: 10.*
2628
exclude:
2729
- laravel: 11.*
2830
php: 8.1
31+
- laravel: 12.*
32+
php: '8.1'
2933

3034
name: P ${{ matrix.php }} - L ${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3135

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@
1818
],
1919
"require": {
2020
"php": "^8.1",
21-
"illuminate/config": "^10.0|^11.0",
22-
"illuminate/database": "^10.0|^11.0",
23-
"illuminate/support": "^10.0|^11.0",
24-
"illuminate/console": "^10.0|^11.0",
25-
"illuminate/filesystem": "^10.0|^11.0",
26-
"illuminate/cache": "^10.0|^11.0",
21+
"illuminate/config": "^10.0|^11.0|^12.0",
22+
"illuminate/database": "^10.0|^11.0|^12.0",
23+
"illuminate/support": "^10.0|^11.0|^12.0",
24+
"illuminate/console": "^10.0|^11.0|^12.0",
25+
"illuminate/filesystem": "^10.0|^11.0|^12.0",
26+
"illuminate/cache": "^10.0|^11.0|^12.0",
2727
"ext-json": "*"
2828
},
2929
"require-dev": {
3030
"phpunit/phpunit": "^10.5|^11.0",
31-
"orchestra/testbench": "^8.0|^9.0",
31+
"orchestra/testbench": "^8.0|^9.0|^10.0",
3232
"friendsofphp/php-cs-fixer": "^3.14",
3333
"josiasmontag/laravel-redis-mock": "^1.2"
3434
},

0 commit comments

Comments
 (0)