.travis.yml 398 B

123456789101112131415161718192021222324252627
  1. language: php
  2. php:
  3. - 7.1
  4. - 7.2
  5. - nightly
  6. env:
  7. - COMPOSER_FLAGS="--prefer-lowest"
  8. - COMPOSER_FLAGS=""
  9. matrix:
  10. fast_finish: true
  11. allow_failures:
  12. - php: nightly
  13. before_install:
  14. - composer self-update
  15. install:
  16. - composer update --no-interaction --prefer-dist $COMPOSER_FLAGS
  17. script:
  18. - vendor/bin/phpunit
  19. notifications:
  20. email: info@endroid.nl