Skip to content

Commit 3a1034b

Browse files
committed
build(deps): add Laravel 11 support
1 parent 34ebbda commit 3a1034b

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
php: [8.1, 8.2]
13-
laravel: [10.*]
13+
laravel: [10.*, 11.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
1616
- laravel: 10.*
1717
testbench: 8.*
18+
- laravel: 11.*
19+
testbench: 9.*
1820

1921
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2022

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
],
1818
"require": {
1919
"php": "^8.1",
20-
"illuminate/console": "^10.0",
21-
"illuminate/support": "^10.0"
20+
"illuminate/console": "^10.0|^11.0",
21+
"illuminate/support": "^10.0|^11.0"
2222
},
2323
"require-dev": {
2424
"mockery/mockery": "^1.4",
25-
"orchestra/testbench": "^8.0",
25+
"orchestra/testbench": "^8.0|^9.0",
2626
"phpunit/phpunit": "^9.3.3",
2727
"squizlabs/php_codesniffer": "^3.6"
2828
},

0 commit comments

Comments
 (0)