.travis.yml 230 B

123456789101112131415161718
  1. language: php
  2. dist: trusty
  3. matrix:
  4. include:
  5. - php: 5.3
  6. dist: precise
  7. php:
  8. - 5.4
  9. - 5.5
  10. - 5.6
  11. - 7.0
  12. - 7.1
  13. - hhvm
  14. script:
  15. - if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then phpunit --coverage-text tests ; fi