1
0
Fork 0
composer/tests/Composer/Test/Fixtures/installer/github-issues-4795.test

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-02-02 09:45:57 +00:00
--TEST--
See Github issue #4795 ( github.com/composer/composer/issues/4795 ).
Composer\Installer::whitelistUpdateDependencies intentionally ignores root requirements even if said package is also a
dependency of one the requirements that is whitelisted for update.
--COMPOSER--
{
"repositories": [
{
"type": "package",
"package": [
{ "name": "a", "version": "1.0.0" },
{ "name": "a", "version": "1.1.0" },
{ "name": "b", "version": "1.0.0", "require": { "a": "~1.0" } },
{ "name": "b", "version": "1.1.0", "require": { "a": "~1.1" } }
2016-02-02 09:45:57 +00:00
]
}
],
"require": {
"a": "~1.0",
"b": "~1.0"
2016-02-02 09:45:57 +00:00
}
}
--INSTALLED--
[
{ "name": "a", "version": "1.0.0" },
{ "name": "b", "version": "1.0.0", "require": { "a": "~1.0" } }
2016-02-02 09:45:57 +00:00
]
--RUN--
update b --with-dependencies
2016-02-02 09:45:57 +00:00
--EXPECT-OUTPUT--
<warning>Dependency "a" is also a root requirement, but is not explicitly whitelisted. Ignoring.</warning>
2016-02-04 11:45:55 +00:00
Loading composer repositories with package information
Updating dependencies (including require-dev)
2016-02-02 09:45:57 +00:00
Nothing to install or update
2016-02-04 11:45:55 +00:00
Writing lock file
Generating autoload files
2016-02-02 09:45:57 +00:00
--EXPECT--