.travis.yml 216 B

12345678910111213141516171819
  1. dist: trusty
  2. language: php
  3. php:
  4. - 7.0
  5. - 7.1
  6. - 7.2
  7. before_script:
  8. - composer install
  9. script:
  10. - vendor/bin/phpunit
  11. after_success:
  12. - travis_retry vendor/bin/php-coveralls
  13. notifications:
  14. email: false