8000 fix composer install process, resolves #20032 · enumag/symfony@f418cb8 · GitHub
[go: up one dir, main page]

Skip to content

Commit f418cb8

Browse files
committed
fix composer install process, resolves symfony#20032
1 parent fd0d288 commit f418cb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__
5353
if (5.1 <= $PHPUNIT_VERSION && $PHPUNIT_VERSION < 5.4) {
5454
passthru("$COMPOSER require --no-update phpunit/phpunit-mock-objects \"~3.1.0\"");
5555
}
56-
passthru("$COMPOSER require --dev --no-update symfony/phpunit-bridge \">=3.2@dev\"");
57-
passthru("$COMPOSER install --prefer-dist --no-progress --ansi", $exit);
56+
passthru("$COMPOSER require --no-update symfony/phpunit-bridge \">=3.2@dev\"");
57+
passthru("$COMPOSER install --no-dev --prefer-dist --no-progress --ansi", $exit);
5858
if ($exit) {
5959
exit($exit);
6060
}

0 commit comments

Comments
 (0)
0