Skip to content

Commit 5599a38

Browse files
authored
Laravel 11 support
1 parent 26ad651 commit 5599a38

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

.github/workflows/run-tests.yml

+11
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,17 @@ jobs:
1717
testbench: 8.*
1818
- laravel: 9.*
1919
testbench: 7.*
20+
include:
21+
- laravel: 9.*
22+
testbench: 7.*
23+
- laravel: 10.*
24+
testbench: 8.*
25+
- laravel: 11.*
26+
testbench: 9.*
27+
exclude:
28+
- laravel: 11.*
29+
php: 8.1
30+
2031

2132
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2233

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,13 @@ The following changes are required when updating:
5555

5656
## Changes
5757

58+
### 2.2.0
59+
60+
- Add Laravel 11 support
61+
5862
### 2.1.0
5963

60-
- Add PHP 8.2 support
64+
- Add PHP 8.3 support
6165

6266
### 2.0.0
6367

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
"php": "~8.3.0 | ~8.2.0 | ~8.1.0",
2424
"ext-json": "*",
2525
"guzzlehttp/guzzle": "^7.2",
26-
"illuminate/http": "^9.0 || ^10.0",
27-
"illuminate/support": "^9.0 || ^10.0",
26+
"illuminate/http": "^9.0 || ^10.0 || ^11.0",
27+
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
2828
"spatie/laravel-package-tools": "^1.1"
2929
},
3030
"require-dev": {
31-
"orchestra/testbench": "^7.0",
32-
"phpunit/phpunit": "^9.5.10",
31+
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
32+
"phpunit/phpunit": "^9.5.10 || ^10.0",
3333
"spatie/laravel-ray": "^1.29",
3434
"timacdonald/log-fake": "^2.0",
3535
"vimeo/psalm": "^4.20"

0 commit comments

Comments
 (0)