Skip to content

Commit 40a8819

Browse files
Merge pull request #15 from erikn69/patch-5
Laravel 11 Support
2 parents 13d5a23 + d81f36e commit 40a8819

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,30 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
php: [7.4, 8.0, 8.1, 8.2]
13-
laravel: [8.*, 9.*, 10.*]
13+
laravel: [8.*, 9.*, 10.*, 11.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
1616
- laravel: 8.*
1717
testbench: ^6.24
1818
- laravel: 9.*
1919
testbench: 7.*
2020
- laravel: 10.*
21-
testbench: 8.*
21+
testbench: 8.*
22+
- laravel: 11.*
23+
testbench: 9.*
2224
exclude:
2325
- laravel: 9.*
2426
php: 7.4
2527
- laravel: 10.*
2628
php: 7.4
2729
- laravel: 10.*
2830
php: 8.0
31+
- laravel: 11.*
32+
php: 8.0
33+
- laravel: 11.*
34+
php: 8.1
35+
- laravel: 11.*
36+
php: 7.4
2937

3038
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
3139

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@
1818
"require": {
1919
"php": "^7.4|^8.0",
2020
"ext-json": "*",
21-
"illuminate/console": "^8.0|^9.0|^10.0",
22-
"illuminate/contracts": "^8.0|^9.0|^10.0",
23-
"illuminate/database": "^8.0|^9.0|^10.0"
21+
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
22+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
23+
"illuminate/database": "^8.0|^9.0|^10.0|^11.0"
2424
},
2525
"require-dev": {
2626
"mockery/mockery": "^1.4",
27-
"orchestra/testbench": "^6.24|^7.0|^8.0",
28-
"pestphp/pest-plugin-laravel": "^1.3",
29-
"phpunit/phpunit": "^9.5.13",
27+
"orchestra/testbench": "^6.24|^7.0|^8.0|^9.0",
28+
"pestphp/pest-plugin-laravel": "^1.3|^2.1",
29+
"phpunit/phpunit": "^9.6|^10.5",
3030
"spatie/temporary-directory": "^1.2",
31-
"vimeo/psalm": "^4.2"
31+
"vimeo/psalm": "^4.2|^5.20"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)