Skip to content

Commit 6a18614

Browse files
committed
build: add support for Laravel 11
1 parent 9cc96af commit 6a18614

File tree

2 files changed

+22
-12
lines changed

2 files changed

+22
-12
lines changed

.github/workflows/tests.yml

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,28 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: [ '7.4', '8.0', '8.1', '8.2' ]
13-
laravel: [ '8.*', '9.*', '10.*' ]
12+
php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ]
13+
laravel: [ 8.*, 9.*, 10.*, 11.* ]
1414
stability: [ prefer-lowest, prefer-stable ]
1515
exclude:
16-
- laravel: '8.*'
17-
php: '8.2'
18-
- laravel: '9.*'
19-
php: '7.4'
20-
- laravel: '10.*'
21-
php: '7.4'
22-
- laravel: '10.*'
23-
php: '8.0'
16+
- laravel: 8.*
17+
php: 8.2
18+
- laravel: 8.*
19+
php: 8.3
20+
- laravel: 9.*
21+
php: 7.4
22+
- laravel: 9.*
23+
php: 8.3
24+
- laravel: 10.*
25+
php: 7.4
26+
- laravel: 10.*
27+
php: 8.0
28+
- laravel: 11.*
29+
php: 7.4
30+
- laravel: 11.*
31+
php: 8.0
32+
- laravel: 11.*
33+
php: 8.1
2434

2535
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2636

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"require": {
66
"php": "^7.4|^8.0",
77
"ext-json": "*",
8-
"illuminate/collections": "^8.0|^9.0|^10.0",
9-
"illuminate/contracts": "^8.0|^9.0|^10.0",
8+
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0",
9+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
1010
"php-http/discovery": "^1.9",
1111
"psr/http-client": "^1.0",
1212
"psr/http-client-implementation": "^1.0",

0 commit comments

Comments
 (0)