Merge pull request #9317 from naderman/test-provider-satisfy-self
Test: Verify require for package provided or replaced by pkg itself is usedpull/9320/head
commit
492bece6e2
|
@ -0,0 +1,25 @@
|
|||
--TEST--
|
||||
Test that a package requiring something it provides itself, satisfies itself even though a package exists.
|
||||
--COMPOSER--
|
||||
{
|
||||
"repositories": [
|
||||
{
|
||||
"type": "package",
|
||||
"package": {
|
||||
"name": "provided/pkg",
|
||||
"version": "1.0.0"
|
||||
}
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"provided/pkg": "1.0.0"
|
||||
},
|
||||
"provide": {
|
||||
"provided/pkg": "1.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
--RUN--
|
||||
update
|
||||
|
||||
--EXPECT--
|
|
@ -0,0 +1,25 @@
|
|||
--TEST--
|
||||
Test that a package requiring something it replaces itself, satisfies itself even though a package exists.
|
||||
--COMPOSER--
|
||||
{
|
||||
"repositories": [
|
||||
{
|
||||
"type": "package",
|
||||
"package": {
|
||||
"name": "replaced/pkg",
|
||||
"version": "1.0.0"
|
||||
}
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"replaced/pkg": "1.0.0"
|
||||
},
|
||||
"provide": {
|
||||
"replaced/pkg": "1.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
--RUN--
|
||||
update
|
||||
|
||||
--EXPECT--
|
Loading…
Reference in New Issue