Skip to content

Commit 446f88e

Browse files
authored
Merge pull request #57 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents 5a7c754 + 94672c5 commit 446f88e

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,20 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest,]
1212
php: [8.2, 8.1, 8.0, 7.4]
13-
laravel: [8.*, 9.*]
13+
laravel: [8.*, 9.*, 10.*]
1414
dependency-version: [prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: 8.*
1618
- laravel: 9.*
1719
testbench: 7.*
1820
- laravel: 8.*
1921
testbench: 6.*
2022
exclude:
23+
- laravel: 10.*
24+
php: 8.0
25+
- laravel: 10.*
26+
php: 7.4
2127
- laravel: 9.*
2228
php: 7.4
2329

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
],
1818
"require": {
1919
"php": "^7.4|^8.0",
20-
"illuminate/support": "^8.0|^9.0"
20+
"illuminate/support": "^8.0|^9.0|^10.0"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "^6.0|^7.0",
23+
"orchestra/testbench": "^6.0|^7.0|^8.0",
2424
"pestphp/pest": "^1.22",
2525
"phpunit/phpunit": "^9.0"
2626
},

0 commit comments

Comments
 (0)