Recently, I've been doing a lot of research about Composer minimum-stability. I get into the official documentation and read about the minimum-stability change. But, even so I cant get the composer to install the dependencies.
I have the root package and two others, let's call them packageA and packageB. When I required the packageB in the root package, the packageB has to bring with him the packageA, but that's when i'm getting the error.
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for packageB/packageB dev-master -> satisfiable by packageA/packageA[dev-master].
- packageB/packageB dev-master requires packageA/packageA dev-master -> no matching package found.
Potential causes:
- A type in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting.
The root package short version of my composer.json
{ "require": { "packageB/packageB": "dev-master" }, "repositories": [ { "type": "vcs", "url": "[email protected]:packageB/packageB.git" } ], "minimum-stability": "dev" } The packageA short version of my composer.json
{ "require": { }, "minimum-stability": "dev" } The packageB short version of my composer.json
{ "require": { "packageA/packageA": "dev-master" }, "repositories": [ { "type": "vcs", "url": "[email protected]:packageA/packageA.git" } ], "minimum-stability": "dev" } The root required packageB that requires packageA, but the packageB says that can't find packageA in the matching conditions.