Skip to content

Commit 3f53665

Browse files
committed
Add support for Laravel 10
1 parent 4ed1597 commit 3f53665

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/tests.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,21 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [7.3, 7.4, 8.0, 8.1]
17-
laravel: [8, 9]
16+
php: [7.3, 7.4, "8.0", 8.1, 8.2]
17+
laravel: [8, 9, 10]
1818
exclude:
1919
- php: 7.3
2020
laravel: 9
21+
- php: 7.3
22+
laravel: 10
2123
- php: 7.4
2224
laravel: 9
25+
- php: 7.4
26+
laravel: 10
27+
- php: "8.0"
28+
laravel: 10
29+
- php: 8.2
30+
laravel: 8
2331

2432
name: P${{ matrix.php }} - L${{ matrix.laravel }}
2533

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"require": {
1919
"php": "^7.3|^8.0",
2020
"laravel/scout": "^9.0",
21-
"illuminate/database": "^8.0|^9.0",
22-
"illuminate/support": "^8.0|^9.0"
21+
"illuminate/database": "^8.0|^9.0|^10.0",
22+
"illuminate/support": "^8.0|^9.0|^10.0"
2323
},
2424
"require-dev": {
2525
"phpunit/phpunit": "^9.3",

0 commit comments

Comments
 (0)