Skip to content

Commit 5908f58

Browse files
authored
Merge pull request #842 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents 6e5e71b + 4e4940d commit 5908f58

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,18 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
php: [8.2, 8.1, 8.0]
13-
laravel: [9.*]
13+
laravel: [9.*, 10.*]
1414
stability: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: 8.*
18+
carbon: ^2.63
1619
- laravel: 9.*
1720
testbench: 7.*
1821
carbon: ^2.63
22+
exclude:
23+
- laravel: 10.*
24+
php: 8.0
1925

2026
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2127

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
],
2222
"require": {
2323
"php": "^8.0",
24-
"illuminate/database": "^9.0",
25-
"illuminate/http": "^9.0",
26-
"illuminate/support": "^9.0",
24+
"illuminate/database": "^9.0|^10.0",
25+
"illuminate/http": "^9.0|^10.0",
26+
"illuminate/support": "^9.0|^10.0",
2727
"spatie/laravel-package-tools": "^1.11"
2828
},
2929
"require-dev": {
3030
"ext-json": "*",
3131
"mockery/mockery": "^1.4",
32-
"orchestra/testbench": "^7.0",
32+
"orchestra/testbench": "^7.0|^8.0",
3333
"spatie/laravel-ray": "^1.28",
3434
"pestphp/pest": "^1.20"
3535
},

0 commit comments

Comments
 (0)