.travis.yml 267 B

1234567891011121314151617181920
  1. language: php
  2. php:
  3. - 5.3
  4. - 5.4
  5. - 5.5
  6. - 5.6
  7. - 7.0
  8. - 7.1
  9. - hhvm
  10. matrix:
  11. allow_failures:
  12. - php: hhvm
  13. script:
  14. - phpunit --configuration tests/phpunit.xml
  15. - ./bin/phpcs -p --standard=tests/phpcs/ruleset.xml lib/
  16. before_script: composer install