Skip to content

Commit

Permalink
Insist on new phpunit on php 8
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Aug 11, 2020
1 parent 374c031 commit c1b3906
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Expand Up @@ -24,7 +24,11 @@ matrix:
- COMPOSER_FLAGS="--ignore-platform-reqs"

before_install:
- composer self-update --2
- |
composer self-update --2
if [[ $TRAVIS_PHP_VERSION == "nightly" ]]; then
composer require --dev --no-update "phpunit/phpunit:^9.3.2"
fi
install:
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update --no-interaction $COMPOSER_FLAGS ; fi
Expand Down

0 comments on commit c1b3906

Please sign in to comment.