Composer: a list of project scripts and plugins?

Does the composer have a built-in way to display a list of plugins in the current project? Or is this the only option for searching composer plugins as a text search through composer.json files in vendor with something like

 $ find vendor -name composer.json | xargs grep -i -r 'composer-plugin' 
+5
source share
2 answers

You can run composer show -i (short for --installed ).

See: fooobar.com/questions/45759 / ...

+1
source

composer -i will display the entire dependency tree.

I usually use composer -s to find out which ones are defined in the root of composer.json

+1
source

Source: https://habr.com/ru/post/1247563/


All Articles