Skip to content

Commit 88ed32f

Browse files
authored
Support Laravel 11 (#20)
* Support Laravel 11 * Remove Laravel 9 support / Upgrade to Pest 2.x * wip
1 parent 4cab1e4 commit 88ed32f

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/workflows/run-tests.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest]
1616
php: [8.3, 8.2, 8.1]
17-
laravel: ['^10.0', '^9.2']
17+
laravel: ['^11.0', '^10.0']
1818
stability: [prefer-lowest, prefer-stable]
19+
exclude:
20+
- laravel: '^11.0'
21+
php: 8.1
1922
include:
20-
- laravel: '^9.2'
21-
testbench: 7.*
2223
- laravel: '^10.0'
2324
testbench: 8.*
25+
- laravel: '^11.0'
26+
testbench: 9.*
2427

2528
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2629

composer.json

+6-7
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,18 @@
1717
],
1818
"require": {
1919
"php": "^8.1",
20-
"illuminate/console": "^9.2|^10.0"
20+
"illuminate/console": "^10.0|^11.0"
2121
},
2222
"require-dev": {
2323
"laravel/pint": "^1.0",
24-
"nunomaduro/collision": "^6.0",
24+
"nunomaduro/collision": "^7.0|^8.0",
2525
"nunomaduro/larastan": "^2.0.1",
26-
"orchestra/testbench": "^7.0|^8.0",
27-
"pestphp/pest": "^1.21",
28-
"pestphp/pest-plugin-laravel": "^1.1",
26+
"orchestra/testbench": "^8.0|^9.0",
27+
"pestphp/pest": "^2.0",
28+
"pestphp/pest-plugin-laravel": "^2.0",
2929
"phpstan/extension-installer": "^1.1",
3030
"phpstan/phpstan-deprecation-rules": "^1.0",
31-
"phpstan/phpstan-phpunit": "^1.0",
32-
"phpunit/phpunit": "^9.5"
31+
"phpstan/phpstan-phpunit": "^1.0"
3332
},
3433
"autoload": {
3534
"psr-4": {

0 commit comments

Comments
 (0)