.travis.yml 505 B

1234567891011121314151617181920212223242526272829303132333435
  1. sudo: false
  2. branches:
  3. only:
  4. - master
  5. language: php
  6. php:
  7. - 5.3
  8. - 5.4
  9. - 5.5
  10. - 5.6
  11. - 7.0
  12. - 7.1
  13. - 7.2
  14. - hhvm
  15. matrix:
  16. fast_finish: true
  17. include:
  18. - php: 5.3
  19. dist: precise
  20. allow_failures:
  21. - php: 5.3
  22. dist: xenial
  23. - php: 5.3
  24. dist: trusty
  25. before_script:
  26. - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi;
  27. - composer --no-interaction --prefer-source install
  28. script:
  29. - bin/phpspec run -f dot