We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The install path of a CakePHP plugin is Plugin/$name, and this would be correct if the composer.json is located within the /app/ directory.
Plugin/$name
composer.json
/app/
What if the composer.json is located one level up? The plugin will not be installed into app/Plugin/$name nor in plugins/$name.
app/Plugin/$name
plugins/$name
Proposed fix:
Since app can be named something else, it's probably easier to install the plugin inside the application-wide plugins/$name directory instead.
app
The text was updated successfully, but these errors were encountered:
Please use the installer-paths extra for custom install paths: https://github.com/composer/installers#custom-install-paths Thanks!
installer-paths
Sorry, something went wrong.
No branches or pull requests
The install path of a CakePHP plugin is
Plugin/$name
, and this would be correct if thecomposer.json
is located within the/app/
directory.What if the
composer.json
is located one level up? The plugin will not be installed intoapp/Plugin/$name
nor inplugins/$name
.Proposed fix:
Plugin/$name
orapp/Plugin/$name
accordinglySince
app
can be named something else, it's probably easier to install the plugin inside the application-wideplugins/$name
directory instead.The text was updated successfully, but these errors were encountered: