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
|
From: Guilhem Moulin <guilhem@debian.org>
Date: Sun, 13 Dec 2020 21:03:34 +0100
Subject: Update PHP pear dependencies
Forwarded: not-needed
Restore pear-pear/ prefix to create proper package dependencies.
This reverts commit 51afe33906e1c9f5cf0811271b29b08c615c95ce "Use
packagist as a source of Net_LDAP2 package".
---
composer.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/composer.json b/composer.json
index 35b2f3b..4a887a3 100644
--- a/composer.json
+++ b/composer.json
@@ -22,9 +22,15 @@
"role": "Developer"
}
],
+ "repositories": [
+ {
+ "type": "pear",
+ "url": "https://pear.php.net/"
+ }
+ ],
"require": {
"php": ">=5.3.3",
- "pear/net_ldap2": ">=2.0.12"
+ "pear-pear/net_ldap2": ">=2.0.12"
},
"autoload": {
"classmap": ["lib/"]
|