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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
From: Sandro Knauß <bugs@sandroknauss.de>
Date: Thu, 10 Mar 2016 17:38:42 +0100
Subject: Update PHP pear dependencies
The current dependencies that are published by upstream are too
conservative, so:
* replace ~ and ^ (that only allows minor versions changes) with >= as
documented in the INSTALL file;
* replace pear/ with pear-pear.php.net/ to create current Debian
package names.
Origin: Debian
Forwarded: not-needed
Last-Update: 2021-07-06
Bug-Debian: https://bugs.debian.org/817792
composer.json-dist | 25 ++++++++++++-------------
1 file changed, 12 insertions(+), 13 deletions(-)
diff --git a/composer.json-dist b/composer.json-dist
index d972934..57d51cc 100644
@@ -10,24 +10,23 @@
],
"require": {
"php": ">=7.3.0",
- "pear/pear-core-minimal": "~1.10.1",
- "pear/auth_sasl": "~1.1.0",
- "pear/mail_mime": "~1.10.0",
- "pear/net_smtp": "~1.10.0",
- "pear/crypt_gpg": "~1.6.3",
- "pear/net_sieve": "~1.4.5",
- "roundcube/plugin-installer": "~0.3.1",
- "roundcube/rtf-html-php": "~2.1",
- "masterminds/html5": "~2.7.0",
- "bacon/bacon-qr-code": "^2.0.0",
- "guzzlehttp/guzzle": "^7.3.0"
+ "pear-pear.php.net/auth_sasl": ">=1.1.0",
+ "pear-pear.php.net/mail_mime": ">=1.10.0",
+ "pear-pear.php.net/net_smtp": ">=1.10.0",
+ "pear-pear.php.net/net_sieve": ">=1.4.5",
+ "roundcube/plugin-installer": ">=0.3.1",
+ "masterminds/html5": ">=2.7.0",
+ "guzzlehttp/guzzle": ">=7.3.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"suggest": {
- "kolab/net_ldap3": "~1.1.1 required for connecting to LDAP",
- "bjeavons/zxcvbn-php": "^1.0 required for Zxcvbn password strength driver"
+ "pear-pear.php.net/crypt_gpg": ">=1.6.3",
+ "bacon/bacon-qr-code": ">=2.0.0",
+ "roundcube/rtf-html-php": ">=2.1",
+ "kolab/net_ldap3": ">=1.1.1",
+ "bjeavons/zxcvbn-php": ">=1.0 required for Zxcvbn password strength driver"
},
"config": {
"allow-plugins": {
|