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

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -