Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f1a7dca

Browse files
minor #40086 Provide implemented packages of replaced dependencies (simonberger)
This PR was merged into the 4.4 branch. Discussion ---------- Provide implemented packages of replaced dependencies | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | License | MIT The meta package symfony/symfony does not provide the virtual packages of the dependencies it replaces. Composer does not pick it as a candidate to replace those packages if the implement such a package/interface. See composer/composer#9643, composer/composer#9666 Commits ------- 57d9a81 Provide implemented packages of replaced dependencies
2 parents 71ca1f3 + 57d9a81 commit f1a7dca

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

composer.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,22 @@
1515
"homepage": "https://symfony.com/contributors"
1616
}
1717
],
18+
"provide": {
19+
"php-http/async-client-implementation": "*",
20+
"php-http/client-implementation": "*",
21+
"psr/cache-implementation": "1.0|2.0",
22+
"psr/container-implementation": "1.0",
23+
"psr/event-dispatcher-implementation": "1.0",
24+
"psr/http-client-implementation": "1.0",
25+
"psr/link-implementation": "1.0",
26+
"psr/log-implementation": "1.0",
27+
"psr/simple-cache-implementation": "1.0",
28+
"symfony/cache-implementation": "1.0|2.0",
29+
"symfony/event-dispatcher-implementation": "1.1",
30+
"symfony/http-client-implementation": "1.1",
31+
"symfony/service-implementation": "1.0",
32+
"symfony/translation-implementation": "1.0"
33+
},
1834
"require": {
1935
"php": ">=7.1.3",
2036
"ext-xml": "*",

src/Symfony/Component/Cache/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"provide": {
1919
"psr/cache-implementation": "1.0|2.0",
2020
"psr/simple-cache-implementation": "1.0",
21-
"symfony/cache-implementation": "1.0"
21+
"symfony/cache-implementation": "1.0|2.0"
2222
},
2323
"require": {
2424
"php": ">=7.1.3",

0 commit comments

Comments
 (0)