No Description

.travis.yml 480B

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