My Magento environment is structured as following:
composer.jsonwhich includes"aoepeople/composer-installers": "*"and a list of Magento modules that deploy the code into my.modmandirectory. From here, i deploy the files throughmodman deploy-allinto the Magento root folder.
So these are my steps, when a new extension update is available:
- composer update
- Inspect changes of the module code in the .modman folder
- git commit
- modman deploy-all
- git push: Starts remote Magento deployment
This works as expected.
When i use the package avstudnitz/scopehints or mb/translate in my composer.json, the folders .modman/scopehints and .modman/translate are created. However, i would prefer a foldername including the vendor name, like the name of the Magento module itself, such as .modman/AvS_ScopeHint and .modman/MB_Translate for clarity.
Is there a way to define the composer deploy foldername for each Magento package?