394
321

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

composer install と composer updateの違い

Posted at

まずは改めて各ファイルの役割から。

composer.lock:現在使用しているバンドルのバージョン等が管理されます。
composer.json:必要となるバンドルを記述します。
composer.pharで実行。

んで、composer install と composer updateですが、

composer installcomposer.lockに書かれている各ライブラリをインストールする。
composer updatecomposer.jsonをもとに各ファイルを最新版にアップデートする。

ということでした。
ユースケースとしては

  • 新しい環境ではじめにインストールするとき:composer install

  • 何か新しいバンドルを追加したい:composer.jsonにかいてcomposer update

  • 本番のライブラリを最新版にしたい:開発環境でcomposer updateして問題なければcomposer.lockファイルを本番にコピーしてcomposer intallする

というかんじでしょうか。開発環境ではupdateのほうが頻繁に使うことになるかと思います。

394
321
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
394
321

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?