Last active
April 11, 2016 17:01
-
-
Save tomaj/bf5e5b214405a0507b02b1408d05c9c7 to your computer and use it in GitHub Desktop.
Find all php extensions used in composer project(s)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Be carefull - find also optional extensions | |
find . -name "composer.json" -exec grep -H '"ext-' {} \; | awk -F '"' '{print $2}' | sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment