2013-08-11 22:28:33 +00:00
|
|
|
--TEST--
|
2017-04-22 20:38:37 +00:00
|
|
|
Composer installers and their requirements are installed first
|
2013-08-11 22:28:33 +00:00
|
|
|
--COMPOSER--
|
|
|
|
{
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "package",
|
|
|
|
"package": [
|
2020-03-11 08:34:40 +00:00
|
|
|
{ "name": "pkg/1", "version": "1.0.0" },
|
|
|
|
{ "name": "pkg/2", "version": "1.0.0" },
|
|
|
|
{ "name": "inst/pkg", "version": "1.0.0", "type": "composer-plugin" },
|
|
|
|
{ "name": "inst/with-req", "version": "1.0.0", "type": "composer-plugin", "require": { "php": ">=5", "ext-json": "*", "composer-plugin-api": "*" } },
|
|
|
|
{ "name": "inst/with-req2", "version": "1.0.0", "type": "composer-plugin", "require": { "pkg/2": "*" } }
|
2013-08-11 22:28:33 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2020-03-11 08:34:40 +00:00
|
|
|
"pkg/1": "1.0.0",
|
|
|
|
"inst/pkg": "1.0.0",
|
|
|
|
"inst/with-req2": "1.0.0",
|
|
|
|
"inst/with-req": "1.0.0"
|
2013-08-11 22:28:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
--RUN--
|
|
|
|
install
|
|
|
|
--EXPECT--
|
2020-03-11 08:34:40 +00:00
|
|
|
Installing inst/pkg (1.0.0)
|
|
|
|
Installing inst/with-req (1.0.0)
|
|
|
|
Installing pkg/2 (1.0.0)
|
|
|
|
Installing inst/with-req2 (1.0.0)
|
|
|
|
Installing pkg/1 (1.0.0)
|