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
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Wed, 12 Jan 2022 09:49:34 -0400
Subject: Adapt composer to pkg-php-tools expectations
Drop composer-runtime-api and adapt versioned dependency, otherwise
dh_phpcomposer gets confused.
Forwarded: not-needed
---
composer.json | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/composer.json b/composer.json
index 6616ae8..d976ce7 100644
--- a/composer.json
+++ b/composer.json
@@ -22,7 +22,6 @@
},
"require": {
"php": "^8.1",
- "composer-runtime-api": "^2",
"ext-ctype": "*",
"doctrine/collections": "^2.2",
"doctrine/dbal": "^3.8.2 || ^4",
@@ -34,7 +33,7 @@
"doctrine/persistence": "^3.3.1 || ^4",
"psr/cache": "^1 || ^2 || ^3",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
- "symfony/var-exporter": "^6.3.9 || ^7.0"
+ "symfony/var-exporter": ">= 6.3.9"
},
"require-dev": {
"doctrine/coding-standard": "^13.0",
|