Skip to content

Commit 7564aa0

Browse files
committed
Added support Laravel 11.x
1 parent fd700ac commit 7564aa0

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/run-tests.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,19 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ ubuntu-latest, windows-latest, macos-latest ]
20-
php: [8.2, 8.1, 8.0]
21-
laravel: [10.*, 9.*]
20+
php: [ 8.3, 8.2, 8.1, 8.0 ]
21+
laravel: [ 11.* 10.*, 9.* ]
2222
dependency-version: [prefer-lowest, prefer-stable]
2323
include:
24-
- laravel: 10.*
25-
testbench: 8.*
26-
- laravel: 9.*
27-
testbench: 7.*
24+
- laravel: 10.*
25+
testbench: 8.*
26+
- laravel: 9.*
27+
testbench: 7.*
2828
exclude:
29-
- laravel: 10.*
30-
php: 8.0
29+
- laravel: 10.*
30+
php: 8.0
31+
- laravel: 11.*
32+
php: 8.1
3133

3234
name: P${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
3335

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
],
1818
"require": {
1919
"guzzlehttp/guzzle": "^7.4",
20-
"illuminate/http": "^8.0|^9.0|^10.0"
20+
"illuminate/http": "^8.0|^9.0|^10.0|^11.0",
21+
"illuminate/support": "8.0|^9.0|^10.0|^11.0"
2122
},
2223
"require-dev": {
2324
"orchestra/testbench": "^7.0|^8.0",

0 commit comments

Comments
 (0)