Skip to content
Advertisement

composer is ignoring installer-paths configuration

I’m try using CakePHP for the first time with composer, but I have some problems.

I have this composer.json:

JavaScript

When I run composer install (or update) --prefer-dist, everything works except smottt/wideimage.

This package is being installed in the /Vendor folder instead /app/Vendor, so, installer-paths was ignored.

Advertisement

Answer

From the documentation.

You cannot use this to change the path of any package. This is only applicable to packages that require composer/installers and use a custom type that it handles.

From one of the packages you’re installing:

JavaScript

So basically the package you’re trying to install doesn’t support custom install paths.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement