Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit c3d742e

Browse files
authored
Merge pull request #84 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents 55244b8 + 8a1bd91 commit c3d742e

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/ci.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,14 @@ jobs:
99
matrix:
1010
os: [ubuntu-latest]
1111
php: [ 7.3, 7.4, '8.0', 8.1 ]
12-
laravel: [ 7, 8, 9 ]
12+
laravel: [ 7, 8, 9 , 10]
1313
exclude:
14+
- php: 7.3
15+
laravel: 10
16+
- php: 7.4
17+
laravel: 10
18+
- php: 8.0
19+
laravel: 10
1420
- php: 7.3
1521
laravel: 9
1622
- php: 7.4

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
],
2121
"require": {
2222
"php": "^7.3|^8.0",
23-
"illuminate/routing": "^7.0|^8.0|^9.0",
24-
"illuminate/support": "^7.0|^8.0|^9.0"
23+
"illuminate/routing": "^7.0|^8.0|^9.0|^10.0",
24+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0"
2525
},
2626
"require-dev": {
27-
"orchestra/testbench": "5.*|6.*|^7.0",
27+
"orchestra/testbench": "5.*|6.*|^7.0|^8.0",
2828
"phpunit/phpunit": "^9.1"
2929
},
3030
"autoload": {

0 commit comments

Comments
 (0)