Skip to content

Commit 85246e2

Browse files
authored
Merge pull request #47 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents 032bf6a + dc0b6e0 commit 85246e2

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
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: [9.*, 8.*]
13+
laravel: [9.*, 8.*, 10.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: ^8.0
1618
- laravel: 9.*
1719
testbench: ^7.0
1820
- laravel: 8.*
1921
testbench: ^6.23
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
],
1818
"require": {
1919
"php": "^7.4|^8.0",
20-
"illuminate/contracts": "^8.73|^9.0",
21-
"illuminate/http": "^8.73|^9.0",
22-
"illuminate/support": "^8.73|^9.0"
20+
"illuminate/contracts": "^8.73|^9.0|^10.0",
21+
"illuminate/http": "^8.73|^9.0|^10.0",
22+
"illuminate/support": "^8.73|^9.0|^10.0"
2323
},
2424
"require-dev": {
25-
"orchestra/testbench": "^6.23|^7.0",
25+
"orchestra/testbench": "^6.23|^7.0|^8.0",
2626
"phpunit/phpunit": "^9.5"
2727
},
2828
"autoload": {
@@ -50,4 +50,4 @@
5050
},
5151
"minimum-stability": "dev",
5252
"prefer-stable": true
53-
}
53+
}

0 commit comments

Comments
 (0)