Due to an existing company policy, I have to install packages in a directory other than the default ./vendor
but composer stubbornly continues to create the default ./vendor
directory and install everything there.
As per the FAQ, I have the following composer.json
contents:
"require": {
"monolog/monolog": "*"
},
"extra": {
"installer-paths": {
"3rdparty/": ["type:library"]
}
}
}
~
I expected this to install monolog
under ./3rdparty
but it doesn't. What am I missing?