Keine Beschreibung

.travis.yml 863B

12345678910111213141516171819202122232425262728293031323334
  1. language: php
  2. php:
  3. - 5.6
  4. - 7.0
  5. - 7.1
  6. - nightly
  7. env:
  8. matrix:
  9. - DEPENDENCIES="high" DRIVER="xdebug"
  10. - DEPENDENCIES="low" DRIVER="xdebug"
  11. - DEPENDENCIES="high" DRIVER="phpdbg"
  12. - DEPENDENCIES="low" DRIVER="phpdbg"
  13. sudo: false
  14. before_install:
  15. - composer self-update
  16. - composer clear-cache
  17. install:
  18. - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable; fi
  19. - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable --prefer-lowest; fi
  20. script:
  21. - if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr vendor/bin/phpunit; fi
  22. - if [[ "$DRIVER" = 'xdebug' ]]; then vendor/bin/phpunit; fi
  23. notifications:
  24. email: false