What to do when composer fails to update your vendor packages?

Comparing #9 with #10

Revision #10 was created by langy langy on May 5, 2014, 7:40:44 PM.

App Root folder

Content

[...]
The normal approach is to reinstall packages. Do the following:

1. Backup your `vendor` folder under your app root, and delete all files in the `vendor` folder, except `.gitignore` if it exists.
2. Backup your `composer.lock` file on your app root, and delete it.
3. Run the following command from your app
lication root:

~~~
php composer.phar install --prefer-dist
~~~
[...]