Skip to content

Commit 2cc1823

Browse files
committed
Add support for Laravel 11 and drop Laravel 9
1 parent b922a34 commit 2cc1823

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,18 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: ['8.1', '8.2']
13-
laravel: ['9.*', '10.*@dev']
12+
php: ['8.1', '8.2', '8.3']
13+
laravel: ['10.*', '11.*']
1414
composer-flags: ['--prefer-stable']
1515
can-fail: [false]
1616
include:
1717
- php: '8.1'
18-
laravel: '9.*'
18+
laravel: '10.*'
1919
composer-flags: '--prefer-stable --prefer-lowest'
2020
can-fail: false
21+
exclude:
22+
- php: '8.1'
23+
laravel: '11.*'
2124

2225
name: "PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}${{ matrix.composer-flags != '' && format(' - Composer {0}', matrix.composer-flags) || '' }}"
2326

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
"require": {
77
"php": "^8.1",
88
"fig/link-util": "^1.2",
9-
"illuminate/http": "^9.0 || ^10.0",
10-
"illuminate/support": "^9.0 || ^10.0",
9+
"illuminate/http": "^10.0 || ^11.0",
10+
"illuminate/support": "^10.0 || ^11.0",
1111
"psr/link": "^1.1.1 || ^2.0.1"
1212
},
1313
"require-dev": {
14-
"laravel/framework": "^9.0 || ^10.0",
15-
"orchestra/testbench": "^7.0 || ^8.0",
14+
"laravel/framework": "^10.0 || ^11.0",
15+
"orchestra/testbench": "^8.0 || ^9.0",
1616
"phpunit/phpunit": "^9.6 || ^10.0"
1717
},
1818
"autoload": {

0 commit comments

Comments
 (0)