Skip to content

Commit c6a46cf

Browse files
authored
Support Laravel 10
1 parent b6ea107 commit c6a46cf

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,18 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
1212
php: [8.2, 8.0, 7.4, 7.3]
13-
laravel: [9.*, 8.*]
13+
laravel: [10.*, 9.*, 8.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: 8.*
1618
- laravel: 9.*
1719
testbench: 7.*
1820
- laravel: 8.*
1921
testbench: ^6.23
2022
exclude:
23+
- laravel: 10.*
24+
php: 8
2125
- laravel: 9.*
2226
php: 7.4
2327
- laravel: 9.*

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"prefer-stable": true,
2323
"require": {
2424
"php": "^7.2|^8.0",
25-
"illuminate/http": "^8.0|^9.0"
25+
"illuminate/http": "^8.0|^9.0|^10"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "^6.23|^7.0",
28+
"orchestra/testbench": "^6.23|^7.0|^8.0",
2929
"phpunit/phpunit": "^9.4"
3030
},
3131
"autoload": {

0 commit comments

Comments
 (0)