Skip to content

Commit db35a17

Browse files
authored
Merge pull request #154 from shuvroroy/main
Add support for laravel 11
2 parents afadb71 + 7212610 commit db35a17

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/run-tests.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,24 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [8.2, 8.1, 8.0]
13-
laravel: [10.*, 9.*, 8.*]
12+
php: [8.3, 8.2, 8.1, 8.0]
13+
laravel: [11.*, 10.*, 9.*, 8.*]
1414
os: [ubuntu-latest]
1515
dependency-version: [prefer-stable]
1616
include:
17+
- laravel: 11.*
18+
testbench: 9.*
1719
- laravel: 10.*
1820
testbench: 8.*
1921
- laravel: 9.*
2022
testbench: 7.*
2123
- laravel: 8.*
2224
testbench: ^6.23
2325
exclude:
26+
- laravel: 11.*
27+
php: 8.1
28+
- laravel: 11.*
29+
php: 8.0
2430
- laravel: 10.*
2531
php: 8.0
2632

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
"php": "^8.0",
2222
"ext-json": "*",
2323
"guzzlehttp/guzzle": "^6.3|^7.3",
24-
"illuminate/bus": "^8.50|^9.0|^10.0",
25-
"illuminate/queue": "^8.50|^9.0|^10.0",
26-
"illuminate/support": "^8.50|^9.0|^10.0",
24+
"illuminate/bus": "^8.50|^9.0|^10.0|^11.0",
25+
"illuminate/queue": "^8.50|^9.0|^10.0|^11.0",
26+
"illuminate/support": "^8.50|^9.0|^10.0|^11.0",
2727
"spatie/laravel-package-tools": "^1.11"
2828
},
2929
"require-dev": {
3030
"mockery/mockery": "^1.4.3",
31-
"orchestra/testbench": "^6.19|^7.0",
32-
"pestphp/pest": "^1.22",
33-
"pestphp/pest-plugin-laravel": "^1.3",
31+
"orchestra/testbench": "^6.19|^7.0|^8.0",
32+
"pestphp/pest": "^1.22|^2.0",
33+
"pestphp/pest-plugin-laravel": "^1.3|^2.0",
3434
"spatie/test-time": "^1.2.2"
3535
},
3636
"autoload": {

0 commit comments

Comments
 (0)