| 12345678910111213141516171819202122232425262728293031323334353637383940 | language: phpsudo: falsephp:  - 7.1  - 7.2  - 7.3  - mastermatrix:  allow_failures:    - php: master  fast_finish: trueenv:  matrix:    - DEPENDENCIES="high"    - DEPENDENCIES="low"  global:    - DEFAULT_COMPOSER_FLAGS="--no-interaction --no-ansi --no-progress --no-suggest"before_install:  - composer self-update  - composer clear-cacheinstall:  - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update $DEFAULT_COMPOSER_FLAGS; fi  - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update $DEFAULT_COMPOSER_FLAGS --prefer-lowest; fiscript:  - if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi  - if [[ "$DRIVER" = 'xdebug' ]]; then vendor/bin/phpunit --coverage-clover=coverage.xml; fiafter_success:  - bash <(curl -s https://codecov.io/bash)notifications:  email: false
 |