Failure

User tests: Successful: Unsuccessful:

avatar zanardigit
zanardigit
30 May 2015

"composer update" is something you should only do as project maintainer, when you want to check for newer versions of your dependencies, or after you changed anything in your composer.json file (i.e. added / modified / removed dependencies). This command not only will download dependencies, but also create a new "composer.lock" file.
On all other cases (deployment, testing) it is best to use "composer install" which only reads the "composer.lock" file. In this way, you are sure that every machine gets the exact same version. And as a nice bonus is much faster than the "composer.update" command :-)

avatar zanardigit zanardigit - open - 30 May 2015
avatar mbabker mbabker - reference | fdb3d15 - 30 May 15
avatar mbabker mbabker - merge - 30 May 2015
avatar mbabker mbabker - close - 30 May 2015
avatar zero-24 zero-24 - change - 31 May 2015
Milestone Added: 3.4.1

Add a Comment

Login with GitHub to post a comment