Skip to content

Commit a12cd7a

Browse files
authored
Allow laravel 12
12 compatibility
1 parent 2195602 commit a12cd7a

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest, windows-latest]
1919
php: [8.2, 8.1, 8.0]
20-
laravel: ['9.*', '10.*', '11.*']
20+
laravel: ['9.*', '10.*', '11.*', '12.*']
2121
stability: [prefer-lowest, prefer-stable]
2222
include:
2323
- laravel: 10.*
@@ -26,13 +26,19 @@ jobs:
2626
testbench: 7.*
2727
- laravel: 11.*
2828
testbench: ^9.0
29+
- laravel: 12.*
30+
testbench: ^10.0
2931
exclude:
3032
- laravel: 10.*
3133
php: 8.0
3234
- laravel: 11.*
3335
php: 8.1
3436
- laravel: 11.*
3537
php: 8.0
38+
- laravel: 12.*
39+
php: 8.1
40+
- laravel: 12.*
41+
php: 8.0
3642

3743
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3844

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@
3838
"php": "^8.0",
3939
"ext-dom": "*",
4040
"ext-libxml": "*",
41-
"illuminate/testing": "^9.0|^10.0|^11.0",
41+
"illuminate/testing": "^9.0|^10.0|^11.0|^12.0",
4242
"symfony/css-selector": "^6.0|^7.0"
4343
},
4444
"require-dev": {
4545
"laravel/pint": "^1.2",
46-
"nunomaduro/larastan": "^2.2",
47-
"orchestra/testbench": "^7.0|^8.0|^9.0",
48-
"pestphp/pest": "^1.0|^2.34",
46+
"larastan/larastan": "^2.0|^3.0",
47+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
48+
"pestphp/pest": "^1.0|^2.34|^3.7",
4949
"phpstan/extension-installer": "^1.2",
50-
"phpstan/phpstan-deprecation-rules": "^1.0",
51-
"phpstan/phpstan-phpunit": "^1.1",
52-
"vimeo/psalm": "^4.29|^5.22"
50+
"phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
51+
"phpstan/phpstan-phpunit": "^1.1|^2.0",
52+
"vimeo/psalm": "^4.29|^5.22|^6.6"
5353
},
5454
"config": {
5555
"allow-plugins": {

0 commit comments

Comments
 (0)