55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
|
--TEST--
|
||
|
Installs a simple package with exact match requirement
|
||
|
--COMPOSER--
|
||
|
{
|
||
|
"repositories": [
|
||
|
{
|
||
|
"type": "package",
|
||
|
"package": [
|
||
|
{
|
||
|
"name": "a/a",
|
||
|
"version": "1.0.0",
|
||
|
"funding": [{ "type": "example", "url": "http://example.org/fund" }],
|
||
|
"require": {
|
||
|
"d/d": "^1.0"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "b/b",
|
||
|
"version": "1.0.0",
|
||
|
"funding": [{ "type": "example", "url": "http://example.org/fund" }]
|
||
|
},
|
||
|
{
|
||
|
"name": "c/c",
|
||
|
"version": "1.0.0",
|
||
|
"funding": [{ "type": "example", "url": "http://example.org/fund" }]
|
||
|
},
|
||
|
{
|
||
|
"name": "d/d",
|
||
|
"version": "1.0.0",
|
||
|
"require": {
|
||
|
"b/b": "^1.0"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"require": {
|
||
|
"a/a": "1.0.0"
|
||
|
}
|
||
|
}
|
||
|
--RUN--
|
||
|
install
|
||
|
--EXPECT-OUTPUT--
|
||
|
Loading composer repositories with package information
|
||
|
Updating dependencies (including require-dev)
|
||
|
Package operations: 3 installs, 0 updates, 0 removals
|
||
|
Writing lock file
|
||
|
Generating autoload files
|
||
|
2 packages you are using are looking for funding.
|
||
|
Use the composer fund command to find out more!
|
||
|
--EXPECT--
|
||
|
Installing b/b (1.0.0)
|
||
|
Installing d/d (1.0.0)
|
||
|
Installing a/a (1.0.0)
|