升級 Composer 的版本。
composer selfupdate
初始化專案目錄。
composer init
設定專案的基本資訊,都有預設值可以都按 Enter 下一步。
安裝套件。
composer require monolog/monolog
更新套件。
# 更新指定套件
composer update monolog/monolog
# 更新所有套件
composer update
從專案目錄中的 composer.lock 安裝提供的內容套件。
composer install