--TEST-- Test the error output of solver problems. --COMPOSER-- { "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" } } --INSTALLED-- [ { "name": "stable-requiree-excluded/pkg", "version": "1.0.0" } ] --LOCK-- { "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": [] } --RUN-- update unstable/package requirer/pkg dependency/pkg --EXPECT-EXIT-CODE-- 2 --EXPECT-OUTPUT-- 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 - The requested package stable-requiree-excluded/pkg could not be found in any version, there may be a typo in the package name. Problem 4 - Root composer.json requires 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. 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 for more details. - It's a private package and you forgot to add a custom repository to find it Read for further common problems. --EXPECT--