Is there a way to interactively install suggested composer packages? Is there a way to interactively install suggested composer packages? php php

Is there a way to interactively install suggested composer packages?


Try

composer suggests

Add the flag -v to make it verbose.

This won't install anything, it will just list out all the suggestions. However, you can pipe it to composer require and get the desired output.


composer suggests | xargs -L 1 composer require

Should work from windows git bash.