Skip to content

Commit b9088e4

Browse files
Merge pull request #141 from stefanzweifel/main
Add Support for Laravel 11
2 parents 005009a + 0e725d6 commit b9088e4

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

.github/workflows/tests.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
php: [ 7.4, 8.0, 8.1, 8.2 ]
18-
laravel: [ 8.*, 9.*, 10.* ]
17+
php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ]
18+
laravel: [ 8.*, 9.*, 10.*, 11.* ]
1919
guzzle: [ 6.*, 7.* ]
2020
dependency-version: [ prefer-lowest, prefer-stable ]
2121
include:
@@ -28,6 +28,9 @@ jobs:
2828
- laravel: 10.*
2929
testbench: 8.*
3030

31+
- laravel: 11.*
32+
testbench: 9.*
33+
3134
exclude:
3235
# PHP 8.1 requires Laravel 8.65, so skip lowest
3336
- laravel: 8.*
@@ -60,6 +63,18 @@ jobs:
6063
- laravel: 10.*
6164
guzzle: 6.*
6265

66+
# Laravel 11 requires PHP 8.2
67+
- laravel: 11.*
68+
php: 7.4
69+
- laravel: 11.*
70+
php: 8.0
71+
- laravel: 11.*
72+
php: 8.1
73+
74+
# Laravel 11 requires Guzzle ^7.2
75+
- laravel: 11.*
76+
guzzle: 6.*
77+
6378
name: P${{ matrix.php }} / L${{ matrix.laravel }} / G${{ matrix.guzzle }} / ${{ matrix.dependency-version }}
6479

6580
steps:

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@
1111
],
1212
"require": {
1313
"php": "^7.4|^8.0",
14-
"illuminate/support": "^8.0|^9.0|^10",
15-
"illuminate/filesystem": "^8.0|^9.0|^10",
16-
"illuminate/console": "^8.0|^9.0|^10",
14+
"illuminate/support": "^8.0|^9.0|^10|^11",
15+
"illuminate/filesystem": "^8.0|^9.0|^10|^11",
16+
"illuminate/console": "^8.0|^9.0|^10|^11",
1717
"maennchen/zipstream-php": "^2.1",
1818
"guzzlehttp/guzzle": "^6.3|^7.2",
1919
"aws/aws-sdk-php": "^3.216.1"
2020
},
2121
"require-dev": {
22-
"orchestra/testbench": "^5|^6|^7|^8",
22+
"orchestra/testbench": "^5|^6|^7|^8|^9",
2323
"mockery/mockery": "^1.3.3",
24-
"phpunit/phpunit": ">=8.5.23|^9"
24+
"phpunit/phpunit": ">=8.5.23|^9|^10"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)