Skip to content

Commit

Permalink
Support Laravel 10 (#107)
Browse files Browse the repository at this point in the history
Laravel 10 has min. php version supported = 8.1
  • Loading branch information
a-bashtannik authored Feb 20, 2023
1 parent 118ff5c commit ec76eb3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.1, 8.0]
laravel: [9.*]
php: [8.1]
laravel: [10.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*

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

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
"settings"
],
"require": {
"php": "^8.0",
"illuminate/config": "^9.0",
"illuminate/database": "^9.0",
"illuminate/support": "^9.0",
"illuminate/console": "^9.0",
"illuminate/filesystem": "^9.0",
"illuminate/cache": "^9.0",
"php": "^8.1",
"illuminate/config": "^10.0",
"illuminate/database": "^10.0",
"illuminate/support": "^10.0",
"illuminate/console": "^10.0",
"illuminate/filesystem": "^10.0",
"illuminate/cache": "^10.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"orchestra/testbench": "^7.0",
"orchestra/testbench": "^8.0",
"friendsofphp/php-cs-fixer": "^3.6",
"josiasmontag/laravel-redis-mock": "^1.2"
},
Expand Down

0 comments on commit ec76eb3

Please sign in to comment.