Skip to content

Commit aa4aae8

Browse files
authored
Add support to Laravel 10 (#23)
1 parent 5640113 commit aa4aae8

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
php: [8.2, 8.1, 8.0]
12-
laravel: [9.*]
12+
laravel: [10.*, 9.*]
1313
dependency-version: [prefer-stable]
1414
include:
1515
- laravel: 9.*
1616
testbench: 7.*
17+
- laravel: 10.*
18+
testbench: 8.*
19+
exclude:
20+
- laravel: 10.*
21+
php: 8.0
1722

1823
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
1924

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"type": "library",
1414
"require": {
1515
"php": "^8.0",
16-
"illuminate/console": "^9.0",
17-
"illuminate/database": "^9.0",
18-
"illuminate/events": "^9.0",
19-
"illuminate/support": "^9.0"
16+
"illuminate/console": "^9.0|^10.0",
17+
"illuminate/database": "^9.0|^10.0",
18+
"illuminate/events": "^9.0|^10.0",
19+
"illuminate/support": "^9.0|^10.0"
2020
},
2121
"require-dev": {
2222
"phpunit/phpunit": "^9.0",
23-
"orchestra/testbench": "^7.0",
23+
"orchestra/testbench": "^7.0|^8.0",
2424
"laravel/legacy-factories": "^1.0.4",
2525
"friendsofphp/php-cs-fixer": "^3.13",
2626
"nunomaduro/larastan": "^2.3"

0 commit comments

Comments
 (0)