File: Workaround-dh_phpcomposer-limitations.patch

package info (click to toggle)
symfony 6.4.24%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 122,248 kB
  • sloc: php: 1,440,364; xml: 6,601; sh: 605; javascript: 597; makefile: 188; pascal: 71
file content (37 lines) | stat: -rw-r--r-- 1,289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Wed, 5 Jul 2023 08:09:25 +0200
Subject: Workaround dh_phpcomposer limitations

Bug-Debian: https://bugs.debian.org/765899
Forwarded: not-needed
---
 composer.json                             | 2 +-
 src/Symfony/Component/Cache/composer.json | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/composer.json b/composer.json
index 89ee98d..cdae473 100644
--- a/composer.json
+++ b/composer.json
@@ -41,7 +41,7 @@
         "doctrine/event-manager": "^1.2|^2",
         "doctrine/persistence": "^2.5|^3.1|^4",
         "twig/twig": "^2.13|^3.0.4",
-        "psr/cache": "^2.0|^3.0",
+        "psr/cache": ">2.0",
         "psr/clock": "^1.0",
         "psr/container": "^1.1|^2.0",
         "psr/event-dispatcher": "^1.0",
diff --git a/src/Symfony/Component/Cache/composer.json b/src/Symfony/Component/Cache/composer.json
index af743b4..23b07ef 100644
--- a/src/Symfony/Component/Cache/composer.json
+++ b/src/Symfony/Component/Cache/composer.json
@@ -22,7 +22,7 @@
     },
     "require": {
         "php": ">=8.1",
-        "psr/cache": "^2.0|^3.0",
+        "psr/cache": ">2.0",
         "psr/log": "^1.1|^2|^3",
         "symfony/cache-contracts": "^2.5|^3",
         "symfony/service-contracts": "^2.5|^3",