Skip to content

Commit 021acbe

Browse files
Laravel 12.x Compatibility (#514)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent 3f9190a commit 021acbe

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,20 @@ jobs:
1010
strategy:
1111
matrix:
1212
php: ['8.1', '8.2']
13-
laravel: ['10.*', '11.*']
13+
laravel: ['10.*', '11.*', '12.*']
1414
dependency-version: [prefer-stable]
1515
include:
1616
- laravel: 10.*
1717
testbench: 8.*
1818
- laravel: 11.*
1919
testbench: 9.*
20+
- laravel: 12.*
21+
testbench: 10.*
2022
exclude:
2123
- laravel: 11.*
2224
php: '8.1'
25+
- laravel: 12.*
26+
php: '8.1'
2327

2428
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2529

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@
2929
"ext-json": "*",
3030
"ext-zip": "*",
3131
"guzzlehttp/guzzle": "^7.5.0",
32-
"illuminate/support": "^10 || ^11.0",
32+
"illuminate/support": "^10 || ^11.0 || ^12.0",
3333
"league/uri": "~6.7 || ~6.8 || ^7.4",
3434
"phpstan/extension-installer": "^1.2",
35-
"phpstan/phpstan-phpunit": "^1.2"
35+
"phpstan/phpstan-phpunit": "^1.2 || ^2.0"
3636
},
3737
"require-dev": {
3838
"dg/bypass-finals": "^1.4",
3939
"mikey179/vfsstream": "^1.6",
4040
"mockery/mockery": "^1.5",
41-
"orchestra/testbench": "^8.1 || ^9.0",
42-
"phpunit/phpunit": "^9.5.26 || ^10.5"
41+
"orchestra/testbench": "^8.1 || ^9.0 || ^10.0",
42+
"phpunit/phpunit": "^9.5.26 || ^10.5 || ^11.5.3"
4343
},
4444
"minimum-stability": "dev",
4545
"prefer-stable": true,

0 commit comments

Comments
 (0)