Self Update

升級 Composer 的版本。

composer selfupdate

Init

初始化專案目錄。

composer init

設定專案的基本資訊,都有預設值可以都按 Enter 下一步。

Require

安裝套件。

composer require monolog/monolog

Update

更新套件。

# 更新指定套件
composer update monolog/monolog
# 更新所有套件
composer update

Install

從專案目錄中的 composer.lock 安裝提供的內容套件。

composer install