40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
--TEST--
|
|
|
|
Test that a package which has a conflict does not get installed and has to be downgraded
|
|
|
|
--COMPOSER--
|
|
{
|
|
"repositories": [
|
|
{
|
|
"type": "package",
|
|
"package": [
|
|
{ "name": "nesty/nest", "version": "1.0.0", "require": {
|
|
"conflicter/pkg": "^1.0",
|
|
"victim/pkg": "^1 <1.2"
|
|
} },
|
|
{ "name": "conflicter/pkg", "version": "1.0.1", "conflict": { "victim/pkg": "1.1.0"} },
|
|
{ "name": "victim/pkg", "version": "1.0.0" },
|
|
{ "name": "victim/pkg", "version": "1.0.1" },
|
|
{ "name": "victim/pkg", "version": "1.0.2" },
|
|
{ "name": "victim/pkg", "version": "1.1.0" },
|
|
{ "name": "victim/pkg", "version": "1.2.0" }
|
|
]
|
|
}
|
|
],
|
|
"require": {
|
|
"nesty/nest": "*"
|
|
}
|
|
}
|
|
|
|
|
|
--RUN--
|
|
update
|
|
|
|
--EXPECT-EXIT-CODE--
|
|
0
|
|
|
|
--EXPECT--
|
|
Installing victim/pkg (1.0.2)
|
|
Installing conflicter/pkg (1.0.1)
|
|
Installing nesty/nest (1.0.0)
|