Skip to content

Commit d7b98f9

Browse files
minor symfony#26110 Bump default PHPUnit version from 6.3 to 6.5 (derrabus)
This PR was merged into the 3.4 branch. Discussion ---------- Bump default PHPUnit version from 6.3 to 6.5 | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | no, but unrelated | Fixed tickets | N/A | License | MIT | Doc PR | N/A This PR bumps the default PHPUnit version for php ≥ 7.2 from the outdated 6.3 to the currently maintained version 6.5. Commits ------- aeffc5f Bump default PHPUnit version from 6.3 to 6.5
2 parents 57197db + aeffc5f commit d7b98f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/PhpUnit/bin/simple-phpunit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ error_reporting(-1);
1717

1818
if (PHP_VERSION_ID >= 70200) {
1919
// PHPUnit 6 is required for PHP 7.2+
20-
$PHPUNIT_VERSION = getenv('SYMFONY_PHPUNIT_VERSION') ?: '6.3';
20+
$PHPUNIT_VERSION = getenv('SYMFONY_PHPUNIT_VERSION') ?: '6.5';
2121
} elseif (PHP_VERSION_ID >= 50600) {
2222
// PHPUnit 4 does not support PHP 7
2323
$PHPUNIT_VERSION = getenv('SYMFONY_PHPUNIT_VERSION') ?: '5.7';

0 commit comments

Comments
 (0)