You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
508 B
Plaintext

--TEST--
Packages found in a higher priority repository take precedence
--COMPOSER--
{
"repositories": [
{
"type": "package",
"package": [
{ "name": "foo/a", "version": "1.0.0" }
]
},
{
"type": "package",
"package": [
{ "name": "foo/a", "version": "1.1.0" }
]
}
],
"require": {
"foo/a": "1.*"
}
}
--RUN--
update
--EXPECT--
Installing foo/a (1.0.0)