.travis.yml 402 B

1234567891011121314151617181920
  1. language: php
  2. sudo: false
  3. php:
  4. - 5.5
  5. - 5.6
  6. - 7.0
  7. matrix:
  8. fast_finish: true
  9. include:
  10. - php: 5.5
  11. env: PREFER_LOWEST="--prefer-lowest"
  12. pre_install:
  13. - phpenv config-rm xdebug.ini
  14. install:
  15. - composer update --prefer-source --no-interaction $PREFER_LOWEST
  16. - if [ -n "$PREFER_LOWEST" ];then composer update phpunit/phpunit --prefer-source --no-interaction --with-dependencies;fi