8000 Use PHPUnit 5.x for PHP 5.6 and up · symfony/symfony@3aa9e04 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3aa9e04

Browse files
committed
Use PHPUnit 5.x for PHP 5.6 and up
1 parent 8fa4e62 commit 3aa9e04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phpunit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ error_reporting(-1);
1919
require __DIR__.'/src/Symfony/Component/Process/ProcessUtils.php';
2020

2121
// PHPUnit 4.8 does not support PHP 7, while 5.0 requires PHP 5.6+
22-
$PHPUNIT_VERSION = PHP_VERSION_ID >= 70000 ? '5.0' : '4.8';
22+
$PHPUNIT_VERSION = PHP_VERSION_ID >= 50600 ? '5.0' : '4.8';
2323
$PHPUNIT_DIR = __DIR__.'/.phpunit';
2424
$PHP = defined('PHP_BINARY') ? PHP_BINARY : 'php';
2525
$PHP = ProcessUtils::escapeArgument($PHP);

0 commit comments

Comments
 (0)
0