#### 1. Composer 縮略名調(diào)用命令 --- **前提:這個(gè)縮略名具有唯一性,不會(huì)混淆** 比如:`composer list` --> `composer lis` **錯(cuò)誤示例:** ``` composer in ``` 因?yàn)?init 和 install 兩個(gè)命令都是 in 開頭,所以此縮略名不可用 Command "in" is ambiguous (init, install and 1 more).【命令“in”不明確(init、install和1個(gè)以上)】 ![](https://img.itqaq.com/art/content/8693e04f93dc9fed3bce3f0adb734295.png) **正確示例:** ``` composer ini ``` 因?yàn)?ini 開頭的命令只有 init,具有唯一性不會(huì)混淆,所以可用,被識(shí)別成了 `composer init` ![](https://img.itqaq.com/art/content/2c66259cb499fca1c5440d3e7d47fbfc.png) #### 2. 列舉一些常用的縮略名 --- | 命令 | 縮略名 | | ------------ | ------------ | | self-update | self | | dump-autoload | dump |