From 2f4661113045821d4f3161c32f3c2f02648fb2ce Mon Sep 17 00:00:00 2001 From: GoT Date: Fri, 29 Jun 2018 09:24:59 +0200 Subject: [PATCH] Fix PHPUnit versions Refer to this lines : https://github.com/symfony/phpunit-bridge/blob/master/bin/simple-phpunit#L48 --- components/phpunit_bridge.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/phpunit_bridge.rst b/components/phpunit_bridge.rst index 3d45fae8c63..ad8c8d3da2d 100644 --- a/components/phpunit_bridge.rst +++ b/components/phpunit_bridge.rst @@ -448,7 +448,7 @@ its ``bin/simple-phpunit`` command. It has the following features: * Does not embed ``symfony/yaml`` nor ``prophecy`` to prevent any conflicts with these dependencies; -* Uses PHPUnit 4.8 when run with PHP <=5.5 and PHPUnit 5.3 when run with PHP >=5.6; +* Uses PHPUnit 4.8 when run with PHP <=5.5, PHPUnit 5.7 when run with PHP >=5.6 and PHPUnit 6.5 when run with PHP >=7.2; * Collects and replays skipped tests when the ``SYMFONY_PHPUNIT_SKIPPED_TESTS`` env var is defined: the env var should specify a file name that will be used for storing skipped tests on a first run, and replay them on the second run;