Skip to content

Commit 3798d79

Browse files
authored
Merge pull request #52 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 2540cdc + 544698c commit 3798d79

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,16 @@ jobs:
1616
fail-fast: true
1717
matrix:
1818
os: [ubuntu-latest]
19-
php: [8.1, '8.2']
20-
laravel: ['9.*', '11.*']
19+
php: [8.2, 8.3, 8.4]
20+
laravel: ['10.*', '11.*', '12.*']
2121
stability: [prefer-lowest, prefer-stable]
2222
include:
23-
- laravel: 9.*
24-
testbench: 7.*
23+
- laravel: 10.*
24+
testbench: 8.*
2525
- laravel: 11.*
2626
testbench: 9.*
27-
exclude:
28-
- laravel: 11.*
29-
php: 8.1
27+
- laravel: 12.*
28+
testbench: 10.*
3029

3130
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3231

composer.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
],
1818
"require": {
1919
"php": "^8.1",
20-
"illuminate/contracts": "^10.0|^11.0",
21-
"illuminate/http": "^10.0|^11.0",
20+
"illuminate/contracts": "^10.0|^11.0|^12.0",
21+
"illuminate/http": "^10.0|^11.0|^12.0",
2222
"open-telemetry/api": "^1.0",
2323
"open-telemetry/sdk": "^1.0",
2424
"php-http/guzzle7-adapter": "^1.0",
@@ -27,13 +27,12 @@
2727
"require-dev": {
2828
"laravel/pint": "^1.3",
2929
"nunomaduro/collision": "^7.0|^8.0",
30-
"nunomaduro/larastan": "^2.3.4",
31-
"orchestra/testbench": "^8.0|^9.0",
32-
"pestphp/pest": "^2.0",
33-
"pestphp/pest-plugin-laravel": "^2.0",
30+
"orchestra/testbench": "^8.0|^9.0|^10.0",
31+
"pestphp/pest": "^2.0|^3.7",
32+
"pestphp/pest-plugin-laravel": "^2.0|^3.1",
3433
"phpstan/extension-installer": "^1.2",
35-
"phpstan/phpstan-deprecation-rules": "^1.1.1",
36-
"phpstan/phpstan-phpunit": "^1.3.3",
34+
"phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0",
35+
"phpstan/phpstan-phpunit": "^1.3.3|^2.0",
3736
"spatie/laravel-ray": "^1.31",
3837
"spatie/pest-plugin-snapshots": "^2.0",
3938
"spatie/phpunit-snapshot-assertions": "^5.0",

0 commit comments

Comments
 (0)