Anybody knows how to composer install
for all subfolders too? Does the composer support it? Now I need to execute this command in each subfolder or add all subfolder's vendor
folder to git.
I found solution in Linux: https://www.bram.us/2014/02/16/installing-dependencies-in-all-subfolder-organised-projects/
But how to do the same in Windows?
Example.
I have a project in C:\grav
with composer.json
in it.
But also I have plugins folder C:\grav\user\plugins
with composer.json
in some of subfolders:
I want to execute composer install
in C:\grav
to install all dependencies in each C:\grav\user\plugins\*
too.