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
composer-plugin-api
From @Seldaek,
Heya,
I am sending you this email because you have a Composer Plugin on https://packagist.org that requires the composer-plugin-api in version * or 1.0.0.
*
1.0.0
Both of those are pretty dangerous:
The solution is simple, open your composer.json and replace that require with:
"composer-plugin-api": "^1.0"
Sorry for the trouble, the documentation had "1.0.0" in the plugin example which mislead most plugin authors, but that is now fixed.
Cheers
The text was updated successfully, but these errors were encountered:
de69224
No branches or pull requests
From @Seldaek,
Heya,
I am sending you this email because you have a Composer Plugin on
https://packagist.org that requires the
composer-plugin-api
inversion
*
or1.0.0
.Both of those are pretty dangerous:
*
would mean your plugin can get loaded in any future composerincluding 2.0, and will probably break.
1.0.0
means that your plugin will not be loaded anymore as soon aswe add functionality and bump the plugin api to 1.1+
The solution is simple, open your composer.json and replace that require with:
Sorry for the trouble, the documentation had "1.0.0" in the plugin
example which mislead most plugin authors, but that is now fixed.
Cheers
The text was updated successfully, but these errors were encountered: