8000 minor #40106 Allow psr/cache v3 but on symfony/cache (nicolas-grekas) · symfony/symfony@0bae235 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0bae235

Browse files
minor #40106 Allow psr/cache v3 but on symfony/cache (nicolas-grekas)
This PR was merged into the 4.4 branch. Discussion ---------- Allow psr/cache v3 but on symfony/cache | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | - | License | MIT | Doc PR | - Consumers of PSR-6 are compatible with v1|2|3. Implementations aren't until they add explicit return types, which is not possible without a BC break. Commits ------- bf23c44 Allow psr/cache v3 but on symfony/cache
2 parents cec9125 + bf23c44 commit 0bae235

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Symfony/Component/HttpKernel/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"symfony/templating": "^3.4|^4.0|^5.0",
4242
"symfony/translation": "^4.2|^5.0",
4343
"symfony/translation-contracts": "^1.1|^2",
44-
"psr/cache": "^1.0|^2.0",
44+
"psr/cache": "^1.0|^2.0|^3.0",
4545
"twig/twig": "^1.43|^2.13|^3.0.4"
4646
},
4747
"provide": {

src/Symfony/Component/Messenger/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"require-dev": {
2424
"doctrine/dbal": "^2.6|^3.0",
2525
"doctrine/persistence": "^1.3|^2",
26-
"psr/cache": "^1.0|^2.0",
26+
"psr/cache": "^1.0|^2.0|^3.0",
2727
"symfony/console": "^3.4|^4.0|^5.0",
2828
"symfony/dependency-injection": "^3.4.19|^4.1.8|^5.0",
2929
"symfony/event-dispatcher": "^4.3|^5.0",

src/Symfony/Contracts/Cache/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"require": {
1919
"php": ">=7.1.3",
20-
"psr/cache": "^1.0|^2.0"
20+
"psr/cache": "^1.0|^2.0|^3.0"
2121
},
2222
"suggest": {
2323
"symfony/cache-implementation": ""

src/Symfony/Contracts/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"require": {
1919
"php": ">=7.1.3",
20-
"psr/cache": "^1.0|^2.0",
20+
"psr/cache": "^1.0|^2.0|^3.0",
2121
"psr/container": "^1.0"
2222
},
2323
"require-dev": {

0 commit comments

Comments
 (0)
0