Skip to content

Instantly share code, notes, and snippets.

@camilopayan
Created December 28, 2015 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save camilopayan/088df104de184575f4d1 to your computer and use it in GitHub Desktop.
Save camilopayan/088df104de184575f4d1 to your computer and use it in GitHub Desktop.
Using Universal Ctags to get everything in composer's vendor folder
find [PATH TO VENDOR FOLDER] -type f -name '*.php' | grep -v -e "[Tt]est" | xargs ctags -a
@camilopayan
Copy link
Author

obv replace your composer vendor folder here.

Works pretty well and leaves out test files.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment