Skip to content

Commit

Permalink
Add support for Laravel 5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hmazter committed Sep 4, 2018
1 parent 0cfdc96 commit c2545d4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@ matrix:
env: ILLUMINATE_VERSION=5.5.* PHPUNIT_VERSION=6.* ORCHESTRA_TESTBENCH_VERSION=3.5
- php: 7.1
env: ILLUMINATE_VERSION=5.6.* PHPUNIT_VERSION=7.* ORCHESTRA_TESTBENCH_VERSION=3.6
- php: 7.1
env: ILLUMINATE_VERSION=5.7.* PHPUNIT_VERSION=7.* ORCHESTRA_TESTBENCH_VERSION=3.7
- php: 7.2
env: ILLUMINATE_VERSION=5.5.* PHPUNIT_VERSION=6.* ORCHESTRA_TESTBENCH_VERSION=3.5
- php: 7.2
env: ILLUMINATE_VERSION=5.6.* PHPUNIT_VERSION=7.* ORCHESTRA_TESTBENCH_VERSION=3.6
- php: 7.2
env: ILLUMINATE_VERSION=5.7.* PHPUNIT_VERSION=7.* ORCHESTRA_TESTBENCH_VERSION=3.7

before_install:
- if [ -n "$ILLUMINATE_VERSION" ] ; then composer require illuminate/support:${ILLUMINATE_VERSION} illuminate/console:${ILLUMINATE_VERSION} --no-update; fi
Expand All @@ -34,4 +38,4 @@ script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml

after_script:
- sh -c "if [[ $TRAVIS_PHP_VERSION = '7.2' && $ILLUMINATE_VERSION = '5.6.*' ]]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi"
- sh -c "if [[ $TRAVIS_PHP_VERSION = '7.2' && $ILLUMINATE_VERSION = '5.7.*' ]]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi"
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project tries to adhere to [Semantic Versioning](http://semver.org/).

## [1.1.0] - 2018-09-04
### Other
- Support Laravel 5.7

## [1.0.0] - 2018-03-09
### Breaking
- Only support PHP 7.1.3 and above
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
],
"require": {
"php": "^7.1.3",
"illuminate/support": "5.5.*|5.6.*",
"illuminate/console": "5.5.*|5.6.*",
"illuminate/support": "5.5.*|5.6.*|5.7.*",
"illuminate/console": "5.5.*|5.6.*|5.7.*",
"dragonmantank/cron-expression": "~2.0"
},
"require-dev": {
Expand Down
1 change: 0 additions & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>

<testsuites>
Expand Down

0 comments on commit c2545d4

Please sign in to comment.