Skip to content

Commit 3d0453c

Browse files
authored
Merge pull request #46 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents 59968a8 + 97838e3 commit 3d0453c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
1212
php: [8.2, 8.1]
13-
laravel: [9.*]
13+
laravel: [9.*, 10.*]
1414
stability: [prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: 8.*
1618
- laravel: 9.*
1719
testbench: 7.*
1820

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
}
1717
],
1818
"require": {
19-
"php" : "^8.1",
19+
"php": "^8.1",
2020
"spatie/url-signer": "^2.0",
21-
"illuminate/support": "^9.0",
21+
"illuminate/support": "^9.0|^10.0",
2222
"spatie/laravel-package-tools": "^1.13.6"
2323
},
2424
"require-dev": {
25-
"orchestra/testbench": "^7.12.1",
26-
"pestphp/pest": "^1.22.2"
25+
"orchestra/testbench": "^7.12.1|^8.0",
26+
"pestphp/pest": "^1.22.2|^1.22"
2727
},
2828
"autoload": {
2929
"psr-4": {

0 commit comments

Comments
 (0)