Skip to content

Commit 77443cf

Browse files
committed
support laravel 10
1 parent a73c7dd commit 77443cf

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ jobs:
1313
strategy:
1414
matrix:
1515
php: [8.1]
16-
laravel: [9.*, 8.*]
16+
laravel: [10.*, 9.*, 8.*]
1717
os: [ubuntu-latest, windows-latest]
1818
include:
19+
- laravel: 10.*
20+
testbench: 8.*
1921
- laravel: 9.*
2022
testbench: 7.*
2123
- laravel: 8.*

composer.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1",
20-
"illuminate/database": "^7.0|^8.0|^9.0",
21-
"illuminate/support": "^7.0|^8.0|^9.0",
19+
"php": "^8.1|^8.2",
20+
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
21+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
2222
"nesbot/carbon": "^2.0"
2323
},
2424
"require-dev": {
25-
"orchestra/testbench": "^6.0|^7.0",
26-
"pestphp/pest": "^1.21"
25+
"orchestra/testbench": "^6.0|^7.0|^8.0",
26+
"pestphp/pest": "^2.2"
2727
},
2828
"autoload": {
2929
"psr-4": {
@@ -47,7 +47,10 @@
4747
"test": "vendor/bin/pest"
4848
},
4949
"config": {
50-
"sort-packages": true
50+
"sort-packages": true,
51+
"allow-plugins": {
52+
"pestphp/pest-plugin": true
53+
}
5154
},
5255
"minimum-stability": "dev",
5356
"prefer-stable": true

0 commit comments

Comments
 (0)