1
0
Fork 0

Add test case to ensure replace does not allow hijacking packages

pull/895/head
Jordi Boggiano 2012-07-11 13:00:41 +02:00
parent 6a8be06dcf
commit 37ef2037cf
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
--TEST--
Replace takes precedence only in higher priority repositories
--COMPOSER--
{
"repositories": [
{
"type": "package",
"package": [
{ "name": "forked", "version": "1.1.0", "provide": { "package2": "1.1.0" } }
]
},
{
"type": "package",
"package": [
{ "name": "package", "version": "1.0.0" },
{ "name": "package2", "version": "1.0.0" },
{ "name": "hijacker", "version": "1.1.0", "provide": { "package": "1.1.0" } }
]
}
],
"require": {
"package": "1.*",
"package2": "1.*"
}
}
--RUN--
install
--EXPECT--
Installing package (1.0.0)
Installing forked (1.1.0)