From 845ebdcfd47d167730c356ec9c9f4db783bcb068 Mon Sep 17 00:00:00 2001 From: Maximilian Reichel Date: Thu, 12 Jun 2014 13:55:56 +0200 Subject: [PATCH] alter command help to explain glob usage hey there! using globs for whitelisting packages is (imo) a very useful feature worth being explained to the user ;) --- src/Composer/Command/UpdateCommand.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Composer/Command/UpdateCommand.php b/src/Composer/Command/UpdateCommand.php index c3c90b94d..d45e386ed 100644 --- a/src/Composer/Command/UpdateCommand.php +++ b/src/Composer/Command/UpdateCommand.php @@ -58,6 +58,11 @@ To limit the update operation to a few packages, you can list the package(s) you want to update as such: php composer.phar update vendor/package1 foo/mypackage [...] + +You may also use an asterisk (*) pattern to limit the update operation to package(s) +from a specific vendor: + +php composer.phar update vendor/package1 foo/* [...] EOT ) ;