Updating symfony2 libs?

I tested symfony and started with version 2.0 now the new version 2.0.1 and want to upgrade. Is there an easy way to update sources?

In Zend, it basically replaces the Zend folder with new libs. Maybe I can use a script like php bin/vendors install?

+5
source share
1 answer

According to the instructions, this message:

If you already have a project based on Symfony Standard Edition 2.0.0, you can easily upgrade to 2.0.1 by receiving new depilations and deps.lock.

Then run the script providers:

$. / bin / vendors install

And don't forget to clear the cache:

$ php. / app / console cache: clear

Here are the files:

+8
source

All Articles