From de5256b78b6fd9c4ddaaf70a94eb3a2feb7f52c6 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 8 Aug 2019 23:20:20 +0200 Subject: [PATCH] Use PHPUnit 8.3 on Travis when possible --- phpunit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpunit b/phpunit index 7b0b47cf7b..b2883a1e05 100755 --- a/phpunit +++ b/phpunit @@ -8,8 +8,8 @@ if (!file_exists(__DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit')) { exit(1); } if (!getenv('SYMFONY_PHPUNIT_VERSION')) { - if (\PHP_VERSION_ID >= 70400) { - putenv('SYMFONY_PHPUNIT_VERSION=8.2'); + if (\PHP_VERSION_ID >= 70200) { + putenv('SYMFONY_PHPUNIT_VERSION=8.3'); } elseif (\PHP_VERSION_ID >= 70000) { putenv('SYMFONY_PHPUNIT_VERSION=6.5'); }