.travis.yml 218 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. - bash <(curl -s https://codecov.io/bash)
  13. notifications:
  14. email: false