With Symfony 2.0.x I store all my client side dependencies (jQuery, etc) in the deps file so I can easily update them all at once with vendor/install, with the switch to composer in 2.1 this is not possible. My options appear to be:
- Fork all repos and add in the composer.json file (pain in the butt and waste of time)
- Manually download them all and stick them inside my repo somewhere (also a pain in the butt)
- Write my own Grunt script or something similar
Does anyone have a solution for handling this, or am I going about it all wrong?