1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- Test the error output of solver problems.
- {
- "repositories": [
- {
- "type": "package",
- "package": [
- { "name": "unstable/package", "version": "2.0.0-alpha" },
- { "name": "unstable/package", "version": "1.0.0" },
- { "name": "requirer/pkg", "version": "1.0.0", "require": {"dependency/pkg": "1.0.0" } },
- { "name": "dependency/pkg", "version": "2.0.0" },
- { "name": "dependency/pkg", "version": "1.0.0" },
- { "name": "stable-requiree-excluded/pkg", "version": "1.0.1" },
- { "name": "stable-requiree-excluded/pkg", "version": "1.0.0" }
- ]
- }
- ],
- "require": {
- "unstable/package": "2.*",
- "bogus/pkg": "1.*",
- "requirer/pkg": "1.*",
- "dependency/pkg": "2.*",
- "stable-requiree-excluded/pkg": "1.0.1"
- }
- }
- [
- { "name": "stable-requiree-excluded/pkg", "version": "1.0.0" }
- ]
- {
- "packages": [
- { "name": "stable-requiree-excluded/pkg", "version": "1.0.0" }
- ],
- "packages-dev": [],
- "aliases": [],
- "minimum-stability": "dev",
- "stability-flags": [],
- "prefer-stable": false,
- "prefer-lowest": false,
- "platform": [],
- "platform-dev": []
- }
- update unstable/package requirer/pkg dependency/pkg
- 2
- Loading composer repositories with package information
- Updating dependencies
- Your requirements could not be resolved to an installable set of packages.
- Problem 1
- - The requested package unstable/package could not be found in any version, there may be a typo in the package name.
- Problem 2
- - The requested package bogus/pkg could not be found in any version, there may be a typo in the package name.
- Problem 3
- - Installation request for requirer/pkg 1.* -> satisfiable by requirer/pkg[1.0.0].
- - requirer/pkg 1.0.0 requires dependency/pkg 1.0.0 -> no matching package found.
- Problem 4
- - stable-requiree-excluded/pkg is locked to version 1.0.0 and an update of this package was not requested.
- - Same name, can only install one of: stable-requiree-excluded/pkg[1.0.1, 1.0.0].
- - Installation request for stable-requiree-excluded/pkg 1.0.1 -> satisfiable by stable-requiree-excluded/pkg[1.0.1].
- Potential causes:
- - A typo in the package name
- - The package is not available in a stable-enough version according to your minimum-stability setting
- see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details.
- - It's a private package and you forgot to add a custom repository to find it
- Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
|