1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-26 20:04:48 +01:00

Only ignore-platform-reqs on nightly

This commit is contained in:
Nikita Popov 2019-06-23 15:11:05 +02:00
parent 9484baf8f8
commit 3cf61fdd26

View File

@ -16,7 +16,12 @@ php:
install:
- if [ $TRAVIS_PHP_VERSION = '7.0' ]; then composer require satooshi/php-coveralls '~1.0'; fi
- composer install --prefer-dist --ignore-platform-reqs
- |
if [ $TRAVIS_PHP_VERSION = 'nightly' ]; then
composer install --prefer-dist --ignore-platform-reqs;
else
composer install --prefer-dist;
fi
matrix:
allow_failures: