Skip to content

Commit ec76eb3

Browse files
authored
Support Laravel 10 (#107)
Laravel 10 has min. php version supported = 8.1
1 parent 118ff5c commit ec76eb3

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: [8.1, 8.0]
17-
laravel: [9.*]
16+
php: [8.1]
17+
laravel: [10.*]
1818
dependency-version: [prefer-lowest, prefer-stable]
1919
include:
20-
- laravel: 9.*
21-
testbench: 7.*
20+
- laravel: 10.*
21+
testbench: 8.*
2222

2323
name: P ${{ matrix.php }} - L ${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2424

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
"settings"
1818
],
1919
"require": {
20-
"php": "^8.0",
21-
"illuminate/config": "^9.0",
22-
"illuminate/database": "^9.0",
23-
"illuminate/support": "^9.0",
24-
"illuminate/console": "^9.0",
25-
"illuminate/filesystem": "^9.0",
26-
"illuminate/cache": "^9.0",
20+
"php": "^8.1",
21+
"illuminate/config": "^10.0",
22+
"illuminate/database": "^10.0",
23+
"illuminate/support": "^10.0",
24+
"illuminate/console": "^10.0",
25+
"illuminate/filesystem": "^10.0",
26+
"illuminate/cache": "^10.0",
2727
"ext-json": "*"
2828
},
2929
"require-dev": {
3030
"phpunit/phpunit": "^8.0|^9.0",
31-
"orchestra/testbench": "^7.0",
31+
"orchestra/testbench": "^8.0",
3232
"friendsofphp/php-cs-fixer": "^3.6",
3333
"josiasmontag/laravel-redis-mock": "^1.2"
3434
},

0 commit comments

Comments
 (0)