Skip to content

Commit cf5e5cf

Browse files
authored
Merge pull request #77 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 0267b7a + f53048f commit cf5e5cf

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/run-tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest]
1919
php: [8.2, 8.1]
20-
laravel: ['9.*', '10.*', '11.*']
20+
laravel: ['9.*', '10.*', '11.*', '12.*']
2121
stability: [prefer-stable]
2222
include:
2323
- laravel: 10.*
@@ -26,9 +26,13 @@ jobs:
2626
testbench: 7.*
2727
- laravel: 11.*
2828
testbench: 9.*
29+
- laravel: 12.*
30+
testbench: 10.*
2931
exclude:
3032
- laravel: 11.*
3133
php: 8.1
34+
- laravel: 12.*
35+
php: 8.1
3236

3337
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3438

composer.json

+7-8
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,20 @@
1717
],
1818
"require": {
1919
"php": "^8.1",
20-
"illuminate/contracts": "^9.19|^10.0|^11.0",
20+
"illuminate/contracts": "^9.19|^10.0|^11.0|^12.0",
2121
"paragonie/ciphersweet": "^4.0.1",
2222
"spatie/laravel-package-tools": "^1.12.0"
2323
},
2424
"require-dev": {
2525
"friendsofphp/php-cs-fixer": "^3.8",
2626
"nunomaduro/collision": "^6.0|^8.0",
27-
"nunomaduro/larastan": "^2.0.1",
28-
"orchestra/testbench": "^7.0|^8.0|^9.0",
29-
"pestphp/pest": "^1.21|^2.34",
30-
"pestphp/pest-plugin-laravel": "^1.1|^2.3",
27+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
28+
"pestphp/pest": "^1.21|^2.34|^3.7",
29+
"pestphp/pest-plugin-laravel": "^1.1|^2.3|^3.1",
3130
"phpstan/extension-installer": "^1.1",
32-
"phpstan/phpstan-deprecation-rules": "^1.0",
33-
"phpstan/phpstan-phpunit": "^1.0",
34-
"phpunit/phpunit": "^9.5|^10.5",
31+
"phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
32+
"phpstan/phpstan-phpunit": "^1.0|^2.0",
33+
"phpunit/phpunit": "^9.5|^10.5|^11.5.3|^12.0",
3534
"spatie/laravel-ray": "^1.26"
3635
},
3736
"autoload": {

0 commit comments

Comments
 (0)