> composer show 用于查看軟件包 #### 1. 列出所有可用的軟件包 --- 在TP6.0框架根目錄下執(zhí)行命令 ``` composer show ```  #### 2. 查看某個包的詳細信息 --- ``` composer show topthink/think-view ```  #### 3. 參數(shù)選項(只列出部分常用的,詳細的請看官方文檔) --- [https://getcomposer.org/doc/03-cli.md#show](https://getcomposer.org/doc/03-cli.md#show) + **--all: 列出所有存儲庫中可用的所有軟件包** 使用該參數(shù)則從存儲庫讀取軟件包 ``` composer show --all composer show topthink/think-view --all ```  + **--path(-P): 列出軟件包路徑** ``` composer show -P composer show topthink/think-view -P ```  + **--outdated(-o): 表示 --latest,但是僅列出具有較新版本的軟件包** ``` composer show -o ``` 