-
-
Notifications
You must be signed in to change notification settings - Fork 86
update deps to phpunit 6.x, fix code and tests #100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
.travis.yml
Outdated
- php: hhvm | ||
|
||
before_install: | ||
- composer self-update | ||
|
||
install: | ||
- export COMPOSER_ROOT_VERSION=dev-master | ||
- if [ "$DEPENDENCIES" != "low" ]; then composer update; fi; | ||
- if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't like removing low dependencies tests, please bring back DEPENDENCIES='low'
for php 7.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay, thought it was depending on php version 5.3...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
low
means that we are testing lowest possible versions of all dependencies
.travis.yml
Outdated
- php: 7.0 | ||
- php: 7.1 | ||
- php: hhvm |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe you can remove hhvm as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fine, recently saw that travis support for hhvm failed in this configuration...
overall this PR looks good but before I merge it I'll first stabilize version |
fix #96