Revision #10                                    has been created by  langy                                    on May 5, 2014, 7:40:44 PM with the memo:
 langy                                    on May 5, 2014, 7:40:44 PM with the memo:
                                
                                
                                    App Root folder                                
                                                                    « previous (#9)                                                                                                    next (#18) »                                                            
                            Changes
                            
    Title
    unchanged
    What to do when composer fails to update your vendor packages?
    Category
    unchanged
    How-tos
    Yii version
    unchanged
    
    Tags
    unchanged
    Yii2, yii2, composer, corrupt, update, package, reinstall
    Content
    changed
    [...]
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 application root:
~~~
php composer.phar install --prefer-dist
~~~[...]