Skip to content
Snippets Groups Projects
Commit 53872af0 authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Try to solve build for PHP versions 5.3 & 5.4.

parent 9d49ce12
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,11 @@ php: ...@@ -9,7 +9,11 @@ php:
matrix: matrix:
allow_failures: allow_failures:
- php: hhvm - php: hhvm
before_script: composer install --dev before_script:
- if [[ "$TRAVIS_PHP_VERSION" == "5.3" -o "$TRAVIS_PHP_VERSION" == "5.4" ]];
then composer install --dev --prefer-lowest; else
composer install --dev;
fi
script: phpunit --configuration tools/phpunit script: phpunit --configuration tools/phpunit
after_script: after_script:
- if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then php vendor/bin/coveralls -v; fi - if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then php vendor/bin/coveralls -v; fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment