.travis.yml 317 B

12345678910111213141516171819
  1. language: php
  2. php:
  3. - 5.4
  4. - 5.5
  5. - 5.6
  6. - 7.0
  7. - 7.1
  8. before_script:
  9. - travis_retry composer self-update
  10. - travis_retry composer install --no-interaction --prefer-source
  11. - npm install -g grunt-cli
  12. - npm install grunt-contrib-qunit
  13. - npm install grunt
  14. script:
  15. - vendor/bin/phpunit -c lib/php/phpunit.xml.dist
  16. - npm test