From 620c2812c0dcf15c9b4805e4fc9a20ddd39cba15 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Mon, 13 Jan 2025 09:15:04 +0100 Subject: [PATCH] Make doctrine/cache optional (#1850) --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index b14faa13..a67f0bdf 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,6 @@ "homepage": "https://www.doctrine-project.org", "require": { "php": "^7.4 || ^8.0", - "doctrine/cache": "^1.11 || ^2.0", "doctrine/dbal": "^3.7.0 || ^4.0", "doctrine/persistence": "^2.2 || ^3", "doctrine/sql-formatter": "^1.0.1", @@ -46,6 +45,7 @@ }, "require-dev": { "doctrine/annotations": "^1 || ^2", + "doctrine/cache": "^1.11 || ^2.0", "doctrine/coding-standard": "^12", "doctrine/deprecations": "^1.0", "doctrine/orm": "^2.17 || ^3.0", @@ -70,6 +70,7 @@ }, "conflict": { "doctrine/annotations": ">=3.0", + "doctrine/cache": "< 1.11", "doctrine/orm": "<2.17 || >=4.0", "twig/twig": "<1.34 || >=2.0 <2.4" },