Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Symfony2: updating just one vendor bundle

Is there a way to update just one bundle without updating every bundle in your deps file? I am currently using "php vendors install" to install all vendor bundles and am not aware of any commands that will update just one bundle at a time.

like image 661
adavea Avatar asked Feb 21 '23 17:02

adavea


1 Answers

1) Just open your deps file (./deps)

2) Remove all bundles except the one you want to update and save the deps file

3) Let's run the command: php bin/vendors update

It will update the bundle.

4) Go back in your deps file and rewrite all the previous removed bundle lines !

Cheers !

like image 124
Sybio Avatar answered Feb 27 '23 19:02

Sybio