.travis.yml 251 B

12345678910111213141516
  1. language: php
  2. php:
  3. - 5.4
  4. - 5.6
  5. - 7
  6. - 7.1
  7. - 7.2
  8. notifications:
  9. email: false
  10. dist: trusty
  11. addons:
  12. postgresql: "9.6"
  13. before_script:
  14. - psql -c 'CREATE DATABASE test;' -U postgres
  15. - composer install
  16. script: composer test && composer lint