I am trying to install aimeos package in laravel 5.2 in a custom defined directory under the root directory.In my composer.json I have
"config": { "preferred-install": "dist", "vendor-dir": "my_directory" }
The package is installed successfully but with all other vendor packages. How can I limit aimeos only in that directory and be able to publish it when I run php artisan vendor:publish?
via Samuel Wainaina