Skip to content

Commit

Permalink
Merge pull request #11 from hmazter/support-laravel-5.6
Browse files Browse the repository at this point in the history
Support laravel 5.6
  • Loading branch information
hmazter authored Feb 8, 2018
2 parents 8f68139 + 4f30c69 commit 7330ca3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ php:
- 5.6
- 7.0
- 7.1
- 7.2

before_script:
- composer self-update
Expand All @@ -15,4 +16,4 @@ script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml

after_script:
- sh -c "if [ $TRAVIS_PHP_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' ]; 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/).

## [0.2.1] -
### Other
- Support Laravel 5.6 and PHPUnit 7

## [0.2.0] - 2017-08-14
### Updated
- Output table include next run occasion for each command
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
],
"require": {
"php": ">=5.6.4",
"illuminate/support": ">=5.0 <5.6",
"illuminate/console": ">=5.0 <5.6",
"illuminate/support": ">=5.0 <5.7",
"illuminate/console": ">=5.0 <5.7",
"mtdowling/cron-expression": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^5.0|^6.0",
"phpunit/phpunit": "^5.0|^6.0|^7.0",
"orchestra/testbench": "~3.3"
},
"autoload": {
Expand Down

0 comments on commit 7330ca3

Please sign in to comment.