TLDR: I want to clone my Magento modules independently to run code quality tests against them without composer installing the entire Magento framework based on my package dependencies.
Hi all - code quality question here.
I want to be able to `git clone` my Magento modules independently so that code quality tests can be executed against them. The pain for me at the moment is that my dependencies naturally include the Magento framework which causes me to have to:
How are some of you handling this?
Solved! Go to Solution.
This was easy enough to overcome with:
composer install --no-plugins; # Prevent Magento from copying itself to the project root