Skip to content

Commit b981bc3

Browse files
committedMar 2, 2023
Update: support laravel 10
1 parent 1bfc709 commit b981bc3

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
 

‎.github/workflows/main.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest]
1616
php: [8.2, 8.1]
17-
laravel: [9.*]
17+
laravel: [10.*, 9.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20+
- laravel: 10.*
21+
testbench: 8.*
2022
- laravel: 9.*
2123
testbench: 7.*
2224

‎composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
],
2020
"require": {
2121
"php": "^8.1",
22-
"illuminate/support": "^9.0",
23-
"illuminate/database": "^9.0"
22+
"illuminate/support": "^9.0|^10.0",
23+
"illuminate/database": "^9.0|^10.0"
2424
},
2525
"require-dev": {
2626
"friendsofphp/php-cs-fixer": "^3.5",
27-
"orchestra/testbench": "^7.0",
27+
"orchestra/testbench": "^7.0|^8.0",
2828
"phpunit/phpunit": "^9.0"
2929
},
3030
"autoload": {

0 commit comments

Comments
 (0)
Please sign in to comment.