Skip to content

Commit 3cf61fd

Browse files
committed
Only ignore-platform-reqs on nightly
1 parent 9484baf commit 3cf61fd

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.travis.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ php:
1616

1717
install:
1818
- if [ $TRAVIS_PHP_VERSION = '7.0' ]; then composer require satooshi/php-coveralls '~1.0'; fi
19-
- composer install --prefer-dist --ignore-platform-reqs
19+
- |
20+
if [ $TRAVIS_PHP_VERSION = 'nightly' ]; then
21+
composer install --prefer-dist --ignore-platform-reqs;
22+
else
23+
composer install --prefer-dist;
24+
fi
2025
2126
matrix:
2227
allow_failures:

0 commit comments

Comments
 (0)