Skip to content

Commit dfb5ed5

Browse files
committed
Add support for Laravel 11
1 parent d4c62e4 commit dfb5ed5

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ jobs:
1414
matrix:
1515
os: [ ubuntu-latest ]
1616
php: [ 8.2, 8.3 ]
17-
laravel: [ 10.* ]
17+
laravel: [ 10.*, 11.* ]
1818
stability: [ prefer-lowest, prefer-stable ]
1919
include:
2020
- laravel: 10.*
2121
testbench: 8.*
22+
- laravel: 11.*
23+
testbench: 9.*
2224

2325
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2426

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,18 @@
1717
],
1818
"require": {
1919
"php": "^8.2",
20-
"illuminate/contracts": "^10.0"
20+
"illuminate/contracts": "^10.0 || ^11.0"
2121
},
2222
"require-dev": {
2323
"friendsofphp/php-cs-fixer": "^3.6",
24-
"nunomaduro/collision": "^7.10",
25-
"nunomaduro/larastan": "^2.0.1",
26-
"orchestra/testbench": "^8.0",
24+
"nunomaduro/collision": "^7.10 || ^8.0",
25+
"larastan/larastan": "^2.0.1",
26+
"orchestra/testbench": "^8.0 || ^9.0",
2727
"pestphp/pest": "^2.24",
2828
"pestphp/pest-plugin-laravel": "^2.2",
2929
"phpstan/extension-installer": "^1.1",
3030
"phpstan/phpstan-deprecation-rules": "^1.0",
31-
"phpstan/phpstan-phpunit": "^1.0",
32-
"phpunit/phpunit": "^10.4"
31+
"phpstan/phpstan-phpunit": "^1.0"
3332
},
3433
"autoload": {
3534
"psr-4": {

0 commit comments

Comments
 (0)