php - Add directory using Composer -
i wanted several git repositories place on directory on git-tracked project. current project structure:
- custom - plugins - file.txt when user composer install, wanted fetch git repo place under new directory on project named provisioning.
- custom - plugins - provisioning - nginx - file.txt am using composer right way?
by default, composer install dependencies vendor directory. if need install directory names provisioning use
"config": { "vendor-dir": "plugins" }, in composer.json file , run composer install command
further details in how specify composer install path?
Comments
Post a Comment