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
-------

bf23c44a07 Allow psr/cache v3 but on symfony/cache
This commit is contained in:
Nicolas Grekas 2021-02-05 16:56:08 +01:00
commit 0bae2356b1
4 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@
"symfony/templating": "^3.4|^4.0|^5.0",
"symfony/translation": "^4.2|^5.0",
"symfony/translation-contracts": "^1.1|^2",
"psr/cache": "^1.0|^2.0",
"psr/cache": "^1.0|^2.0|^3.0",
"twig/twig": "^1.43|^2.13|^3.0.4"
},
"provide": {

View File

@ -23,7 +23,7 @@
"require-dev": {
"doctrine/dbal": "^2.6|^3.0",
"doctrine/persistence": "^1.3|^2",
"psr/cache": "^1.0|^2.0",
"psr/cache": "^1.0|^2.0|^3.0",
"symfony/console": "^3.4|^4.0|^5.0",
"symfony/dependency-injection": "^3.4.19|^4.1.8|^5.0",
"symfony/event-dispatcher": "^4.3|^5.0",

View File

@ -17,7 +17,7 @@
],
"require": {
"php": ">=7.1.3",
"psr/cache": "^1.0|^2.0"
"psr/cache": "^1.0|^2.0|^3.0"
},
"suggest": {
"symfony/cache-implementation": ""

View File

@ -17,7 +17,7 @@
],
"require": {
"php": ">=7.1.3",
"psr/cache": "^1.0|^2.0",
"psr/cache": "^1.0|^2.0|^3.0",
"psr/container": "^1.0"
},
"require-dev": {