Skip to content

Commit 5354691

Browse files
authored
Merge pull request #182 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents d164aad + 9cd7c60 commit 5354691

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/run-tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
php: [8.4, 8.3, 8.2, 8.1]
15-
laravel: ['9.*', '10.*', '11.*']
15+
laravel: ['9.*', '10.*', '11.*', '12.*']
1616
dependency-version: [prefer-lowest, prefer-stable]
1717
include:
1818
- laravel: 10.*
@@ -21,9 +21,13 @@ jobs:
2121
testbench: 7.*
2222
- laravel: 11.*
2323
testbench: 9.*
24+
- laravel: 12.*
25+
testbench: 10.*
2426
exclude:
2527
- laravel: 11.*
2628
php: 8.1
29+
- laravel: 12.*
30+
php: 8.1
2731

2832
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2933

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
"require": {
1919
"php": "^8.1",
2020
"openspout/openspout": "^4.19",
21-
"illuminate/support": "^9.0|^10.0|^11.0"
21+
"illuminate/support": "^9.0|^10.0|^11.0|^12.0"
2222
},
2323
"require-dev": {
24-
"pestphp/pest-plugin-laravel": "^1.3|^2.3",
25-
"phpunit/phpunit": "^9.4|^10.5",
24+
"pestphp/pest-plugin-laravel": "^1.3|^2.3|^3.0",
25+
"phpunit/phpunit": "^9.4|^10.5|^11.0|^12.0",
2626
"spatie/pest-plugin-snapshots": "^1.1|^2.1",
2727
"spatie/phpunit-snapshot-assertions": "^4.0|^5.1",
2828
"spatie/temporary-directory": "^1.2|^2.2"

0 commit comments

Comments
 (0)