.travis.yml 436 B

1234567891011121314151617181920212223242526272829303132
  1. language: php
  2. php:
  3. - '5.4'
  4. - '5.5'
  5. - '5.6'
  6. - '7.0'
  7. - '7.1'
  8. - '7.2'
  9. - nightly
  10. matrix:
  11. include:
  12. - php: 5.3
  13. dist: precise
  14. fast_finish: true
  15. allow_failures:
  16. - php: nightly
  17. cache:
  18. directories:
  19. - $HOME/.composer/cache/files
  20. before_script:
  21. - composer install --no-interaction --prefer-dist
  22. script:
  23. - php -d zend.enable_gc=0 vendor/bin/phpunit --coverage-text
  24. notifications:
  25. email: false