Skip to content

Commit

Permalink
Merge pull request #2 from webparking/feature/adding-laravel-5.7-comp…
Browse files Browse the repository at this point in the history
…atibility

Added compatibility with Laravel 5.7
  • Loading branch information
JeroenVanOort committed Mar 25, 2019
2 parents 671e9ca + 508aed8 commit fab1ece
Show file tree
Hide file tree
Showing 3 changed files with 1,065 additions and 151 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Expand Up @@ -13,14 +13,20 @@ matrix:
env: LARAVEL='5.5.*' TESTBENCH='3.5.*'
- php: 7.1
env: LARAVEL='5.6.*' TESTBENCH='3.6.*'
- php: 7.1
env: LARAVEL='5.7.*' TESTBENCH='3.7.*'
- php: 7.2
env: LARAVEL='5.5.*' TESTBENCH='3.5.*'
- php: 7.2
env: LARAVEL='5.6.*' TESTBENCH='3.6.*'
- php: 7.2
env: LARAVEL='5.7.*' TESTBENCH='3.7.*'
- php: 7.3
env: LARAVEL='5.5.*' TESTBENCH='3.5.*'
- php: 7.3
env: LARAVEL='5.6.*' TESTBENCH='3.6.*'
- php: 7.3
env: LARAVEL='5.7.*' TESTBENCH='3.7.*'

before_install:
- travis_retry composer self-update
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Expand Up @@ -27,8 +27,8 @@
"php": ">=7.1.0",
"ext-json": "*",
"ext-posix": "*",
"illuminate/support": "~5.5.0|~5.6.0",
"illuminate/console": "~5.5.0|~5.6.0"
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/console": "~5.5.0|~5.6.0|~5.7.0"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -57,8 +57,8 @@
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12",
"phpunit/phpunit": "^6|^7.0",
"orchestra/testbench": "~3.5.0|~3.6.0",
"orchestra/database": "~3.5.0|~3.6.0",
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0",
"orchestra/database": "~3.5.0|~3.6.0|~3.7.0",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^0.11.2"
},
Expand Down

0 comments on commit fab1ece

Please sign in to comment.