.travis.yml 622 B

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