Skip to content

Commit f861b9d

Browse files
authored
Merge pull request #16 from laravel-shift/l10-compatibility
2 parents 1c7ca66 + 35c40a8 commit f861b9d

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
php: [8.2, 8.1, 8.0, 7.4, 7.3]
13-
laravel: [9.*, 8.*, 7.*, 6.*]
13+
laravel: [9.*, 8.*, 7.*, 6.*, 10.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: 8.*
1618
- laravel: 9.*
1719
testbench: 7.*
1820
- laravel: 8.*
@@ -22,6 +24,12 @@ jobs:
2224
- laravel: 6.*
2325
testbench: ^4.17
2426
exclude:
27+
- laravel: 10.*
28+
php: 8.0
29+
- laravel: 10.*
30+
php: 7.4
31+
- laravel: 10.*
32+
php: 7.3
2533
- laravel: 6.*
2634
php: 8.1
2735
- laravel: 6.*

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
],
2323
"require": {
2424
"php": "^7.3|^7.4|^8.0|^8.1|^8.2",
25-
"illuminate/support" : "^6.0|^7.0|^8.0|^9.0",
25+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
2626
"ext-json": "*"
2727
},
2828
"autoload": {
@@ -41,7 +41,6 @@
4141
"scripts": {
4242
"test": "vendor/bin/phpunit --colors=always",
4343
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
44-
4544
},
4645
"extra": {
4746
"laravel": {
@@ -55,7 +54,7 @@
5554
},
5655
"require-dev": {
5756
"friendsofphp/php-cs-fixer": "^2 || ^3",
58-
"orchestra/testbench": "^4.0|^5.0|^6.0||^7.0",
57+
"orchestra/testbench": "^4.0|^5.0|^6.0||^7.0|^8.0",
5958
"phpunit/phpunit": "^8.0 || ^9.0"
6059
}
6160
}

0 commit comments

Comments
 (0)