.travis.yml 377 B

123456789101112131415161718192021
  1. language: php
  2. php:
  3. - 5.5
  4. - 5.6
  5. - 7.0
  6. - hhvm
  7. matrix:
  8. include:
  9. - php: 5.5
  10. env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
  11. before_script:
  12. - travis_retry composer self-update
  13. - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction
  14. script:
  15. - vendor/bin/phpunit
  16. - vendor/bin/phpcs --standard=PSR2 src tests