.travis.yml 502 B

1234567891011121314151617181920212223242526272829303132333435
  1. language: php
  2. php:
  3. - 5.3.3
  4. - 5.3
  5. - 5.4
  6. - 5.5
  7. - 5.6
  8. - 7.0
  9. - hhvm
  10. matrix:
  11. allow_failures:
  12. - php: hhvm
  13. sudo: false
  14. before_install:
  15. - composer self-update
  16. install:
  17. - travis_retry composer install --no-interaction --prefer-source
  18. script:
  19. - ./vendor/bin/phpunit --configuration ./build/phpunit.xml
  20. notifications:
  21. email: false
  22. webhooks:
  23. urls:
  24. - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960
  25. on_success: always
  26. on_failure: always
  27. on_start: false