Skip to content

Commit 6d3eab8

Browse files
authored
Merge pull request #111 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents e587aeb + 9a2cb76 commit 6d3eab8

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,18 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
php: [8.1, 8.0, 7.4]
12-
laravel: [8.*, 9.*]
12+
laravel: [8.*, 9.*, 10.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
exclude:
15+
- laravel: 10.*
16+
php: 8.0
17+
- laravel: 10.*
18+
php: 7.4
1519
- laravel: 9.*
1620
php: 7.4
1721
include:
22+
- laravel: 10.*
23+
testbench: ^8.0
1824
- laravel: 8.*
1925
testbench: ^6.23
2026
- laravel: 9.*

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
],
1818
"require": {
1919
"php": "^7.4|^8.0",
20-
"illuminate/database": "^8.0|^9.0",
21-
"illuminate/view": "^8.0|^9.0",
20+
"illuminate/database": "^8.0|^9.0|^10.0",
21+
"illuminate/view": "^8.0|^9.0|^10.0",
2222
"livewire/livewire": "^2.0",
2323
"spatie/sun": "^1.1.1"
2424
},
2525
"require-dev": {
26-
"orchestra/testbench": "^6.0|^7.0",
26+
"orchestra/testbench": "^6.0|^7.0|^8.0",
2727
"phpunit/phpunit": "^9.3",
2828
"spatie/phpunit-snapshot-assertions": "^4.2"
2929
},

0 commit comments

Comments
 (0)