Skip to content

Commit 6d4a343

Browse files
Laravel 12.x Compatibility (#43)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent e900874 commit 6d4a343

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest]
1515
php: [8.0, 8.1, 8.2, 8.3]
16-
laravel: ['9.*', '10.*', '11.*']
16+
laravel: ['9.*', '10.*', '11.*', '12.*']
1717
dependency-version: [prefer-lowest, prefer-stable]
1818
exclude:
1919
- laravel: 9.*
@@ -26,13 +26,19 @@ jobs:
2626
php: 8.0
2727
- laravel: 11.*
2828
php: 8.1
29+
- laravel: 12.*
30+
php: 8.0
31+
- laravel: 12.*
32+
php: 8.1
2933
include:
3034
- laravel: 9.*
3135
testbench: 7.*
3236
- laravel: 10.*
3337
testbench: 8.*
3438
- laravel: 11.*
3539
testbench: 9.*
40+
- laravel: 12.*
41+
testbench: 10.*
3642

3743
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3844

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
"require": {
3737
"php": "^7.4|^8.0",
3838
"graham-campbell/manager": "^5.0",
39-
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
40-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
41-
"jenssegers/optimus": "^0.2.2"
39+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
40+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
41+
"jenssegers/optimus": "^0.2.2|^1.1"
4242
},
4343
"require-dev": {
4444
"graham-campbell/testbench": "^6.0",

0 commit comments

Comments
 (0)