Skip to content

Commit

Permalink
add laravel 6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
okaufmann committed Jun 13, 2020
1 parent 7361e34 commit dc436ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [7.4, 7.3, 7.2]
laravel: [7.*]
laravel: [7.*, 6.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*

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

Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@
"prefer-stable" : true,
"require": {
"php": "^7.2.5",
"laravel/framework": "^7.0"
"laravel/framework": "^6.18|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"mockery/mockery": "^1.3.1",
"illuminate/database": "^7.0",
"orchestra/testbench": "^5.1",
"illuminate/database": "^6.18|^7.0",
"orchestra/testbench": "^4.0|^5.0",
"doctrine/dbal": "^2.10"
},
"config": {
Expand Down

0 comments on commit dc436ea

Please sign in to comment.