forked from phpecc/phpecc
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Conflicts with roave/security-advisories #20
Labels
bug
Something isn't working
Comments
Thanks, let's see if #23 fixes the problem. It should, but better to test. |
Before the PR{
"require": {
"paragonie/ecc": "^2.1",
"roave/security-advisories": "dev-latest"
}
} Yields:
After the PR{
"require": {
"paragonie/ecc": "dev-master",
"roave/security-advisories": "dev-latest"
}
} Yields:
The only thing we can really do here is, not |
After removing the
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please fix package "replaces" information because of
Problem 1 - Root composer.json requires paragonie/ecc ^2.1 -> satisfiable by paragonie/ecc[v2.1.0]. - roave/security-advisories dev-latest conflicts with mdanter/ecc <2 (paragonie/ecc v2.1.0 replaces mdanter/ecc *). - Root composer.json requires roave/security-advisories dev-latest -> satisfiable by roave/security-advisories[dev-latest].
Maybe something like this
"replace": { "mdanter/ecc": "<2.0" }
The text was updated successfully, but these errors were encountered: