.travis.yml 406 B

12345678910111213141516171819202122232425262728
  1. language: php
  2. php:
  3. # - 5.3 # requires old distro, see below
  4. - 5.4
  5. - 5.5
  6. - 5.6
  7. - 7.0
  8. - 7.1
  9. - 7.2
  10. - hhvm # ignore errors, see below
  11. # lock distro so new future defaults will not break the build
  12. dist: trusty
  13. matrix:
  14. include:
  15. - php: 5.3
  16. dist: precise
  17. allow_failures:
  18. - php: hhvm
  19. install:
  20. - composer install --no-interaction
  21. script:
  22. - vendor/bin/phpunit --coverage-text