Skip to content

Commit f7b00a3

Browse files
authored
Merge pull request #116 from erikn69/patch-6
Laravel 11 Support
2 parents cc862f5 + cb7f8ae commit f7b00a3

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

.github/workflows/run-tests.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,22 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
php: [8.2, 8.1, 8.0]
12-
laravel: [10.*, 9.*, 8.*]
12+
laravel: [11.*, 10.*, 9.*, 8.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
15+
- laravel: 11.*
16+
testbench: 9.*
1517
- laravel: 10.*
1618
testbench: 8.*
1719
- laravel: 9.*
1820
testbench: 7.*
1921
- laravel: 8.*
2022
testbench: ^6.23
2123
exclude:
24+
- laravel: 11.*
25+
php: 8.1
26+
- laravel: 11.*
27+
php: 8.0
2228
- laravel: 10.*
2329
php: 8.0
2430

composer.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
21-
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
22-
"spatie/laravel-package-tools": "^1.4.3",
23-
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0"
20+
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0",
21+
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0",
22+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
23+
"spatie/laravel-package-tools": "^1.4.3"
2424
},
2525
"require-dev": {
26-
"brianium/paratest": "^6.2",
26+
"brianium/paratest": "^6.2|^7.4",
2727
"mockery/mockery": "^1.4",
28-
"nunomaduro/collision": "^5.3|^6.0",
29-
"orchestra/testbench": "^6.15|^7.0|^8.0",
30-
"pestphp/pest-plugin-laravel": "^1.3",
31-
"phpunit/phpunit": "^9.5.4"
28+
"nunomaduro/collision": "^5.3|^6.0|^8.0",
29+
"orchestra/testbench": "^6.15|^7.0|^8.0|^9.0",
30+
"pestphp/pest-plugin-laravel": "^1.3|^2.1",
31+
"phpunit/phpunit": "^9.6|^10.5"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)