浏览代码

Merge pull request #3051 from phramz/patch-1

alter command help to explain glob usage
Jordi Boggiano 10 年之前
父节点
当前提交
1d8b627b57
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/Composer/Command/UpdateCommand.php

+ 5 - 0
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:
 
 <info>php composer.phar update vendor/package1 foo/mypackage [...]</info>
+
+You may also use an asterisk (*) pattern to limit the update operation to package(s)
+from a specific vendor:
+
+<info>php composer.phar update vendor/package1 foo/* [...]</info>
 EOT
             )
         ;