.travis.yml 237 B

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