Skip to content

Commit 95c0c10

Browse files
minor #43101 [Cache] allow/provide psr/simple-cache v2 (nicolas-grekas)
This PR was merged into the 4.4 branch. Discussion ---------- [Cache] allow/provide psr/simple-cache v2 | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | - | License | MIT | Doc PR | - As we already did for psr/cache. See php-fig/fig-standards#1252 for background. Commits ------- d511251 [Cache] allow/provide psr/simple-cache v2
2 parents 9fc73c3 + d511251 commit 95c0c10

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"psr/http-client-implementation": "1.0",
2525
"psr/link-implementation": "1.0",
2626
"psr/log-implementation": "1.0|2.0",
27-
"psr/simple-cache-implementation": "1.0",
27+
"psr/simple-cache-implementation": "1.0|2.0",
2828
"symfony/cache-implementation": "1.0|2.0",
2929
"symfony/event-dispatcher-implementation": "1.1",
3030
"symfony/http-client-implementation": "1.1|2.0",
@@ -133,7 +133,7 @@
133133
"php-http/httplug": "^1.0|^2.0",
134134
"predis/predis": "~1.1",
135135
"psr/http-client": "^1.0",
136-
"psr/simple-cache": "^1.0",
136+
"psr/simple-cache": "^1.0|^2.0",
137137
"egulias/email-validator": "^2.1.10|^3.1",
138138
"symfony/phpunit-bridge": "^5.2",
139139
"symfony/security-acl": "~2.8|~3.0",

src/Symfony/Component/Cache/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"provide": {
1919
"psr/cache-implementation": "1.0|2.0",
20-
"psr/simple-cache-implementation": "1.0",
20+
"psr/simple-cache-implementation": "1.0|2.0",
2121
"symfony/cache-implementation": "1.0|2.0"
2222
},
2323
"require": {
@@ -35,7 +35,7 @@
3535
"doctrine/cache": "^1.6|^2.0",
3636
"doctrine/dbal": "^2.7|^3.0",
3737
"predis/predis": "^1.1",
38-
"psr/simple-cache": "^1.0",
38+
"psr/simple-cache": "^1.0|^2.0",
3939
"symfony/config": "^4.2|^5.0",
4040
"symfony/dependency-injection": "^3.4|^4.1|^5.0",
4141
"symfony/filesystem": "^4.4|^5.0",

0 commit comments

Comments
 (0)