diff --git a/.travis.yml b/.travis.yml index a2f09c6..1cced46 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,17 @@ language: php php: - - 7.0 - 7.1 - 7.2 - 7.3 + - 7.4snapshot - nightly sudo: false matrix: allow_failures: + - php: 7.4snapshot - php: nightly fast_finish: true @@ -23,13 +24,10 @@ before_install: install: - composer update -n --prefer-dist # pthreads is now only supported on PHP 7.2+ - - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "7.1" ]; then + - if [ "$TRAVIS_PHP_VERSION" != "7.1" ]; then travis/install-pthreads.sh; fi - # parallel is only supported on PHP 7.1+ - - if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then - travis/install-parallel.sh; - fi + - travis/install-parallel.sh; - wget https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.2/coveralls.phar - chmod +x coveralls.phar