You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently your composer.json restricts ability to install it somewhere under website's root - instead it goes to vendor/ which makes no sense as vendor/ is not exposed to direct invocation and is located above the website's root.
Please add:
"require": {
"composer/installers": "~1.0"
}
to let us install the library to specified locations using standard means:
Sorry, ignore this issue. You won't get stuff going to some custom directory only by providing the dependency from composer/installers. As a matter of fact you don't need such a dependency. What you really need is oomphinc/composer-installers-extender composer plugin
which allows for custom installation paths of composer packages:
Currently your
composer.json
restricts ability to install it somewhere under website's root - instead it goes tovendor/
which makes no sense asvendor/
is not exposed to direct invocation and is located above the website's root.Please add:
to let us install the library to specified locations using standard means:
See: https://getcomposer.org/doc/faqs/how-do-i-install-a-package-to-a-custom-path-for-my-framework.md
The text was updated successfully, but these errors were encountered: