.travis.yml 517 B

1234567891011121314151617181920212223242526272829
  1. language: php
  2. env:
  3. - PREFER_LOWEST="--prefer-lowest"
  4. - PREFER_LOWEST=""
  5. php:
  6. - 5.4
  7. - 5.5
  8. - 5.6
  9. - 7.0
  10. - hhvm
  11. matrix:
  12. allow_failures:
  13. - php: hhvm
  14. fast_finish: true
  15. before_script:
  16. - composer dump-autoload
  17. - composer self-update
  18. - composer update --prefer-source $PREFER_LOWEST
  19. script: bin/phpunit
  20. # Use Travis' new container-based infrastructure.
  21. # See http://docs.travis-ci.com/user/migrating-from-legacy/#How-can-I-use-container-based-infrastructure%3F
  22. sudo: false