Skip to content

Commit 07c6749

Browse files
authored
Merge pull request #11 from InteractionDesignFoundation/l10
Support Laravel 10
2 parents 7984ad6 + 7fb3ed0 commit 07c6749

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.2, 8.0]
12-
laravel: [^9.0, ^8.0]
11+
php: [8.2, 8.1, 8.0]
12+
laravel: [^10.0, ^9.0, ^8.0]
1313
dependencies: [lowest, highest]
14+
exclude:
15+
- php: 8.0
16+
laravel: ^10.0
1417

1518
name: P${{ matrix.php }} | L${{ matrix.laravel }} | ${{ matrix.dependencies == 'highest' && '↑' || '↓' }}
1619

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"license": "BSD-2-Clause",
1414
"require": {
1515
"php": "^8.0",
16-
"illuminate/cache": "^8.0|^9.0",
17-
"illuminate/console": "^8.0|^9.0",
18-
"illuminate/support": "^8.0|^9.0"
16+
"illuminate/cache": "^8.0 || ^9.0 || ^10.0",
17+
"illuminate/console": "^8.0 || ^9.0 || ^10.0",
18+
"illuminate/support": "^8.0 || ^9.0 || ^10.0"
1919
},
2020
"suggest": {
2121
"geoip2/geoip2": "Required to use the MaxMind database or web service with GeoIP (~2.1).",

0 commit comments

Comments
 (0)