blob: a3cfe9660167aae9ae4483f5a6455d0719676921 (
plain)
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 91f1a3be3613cb60d90ebbde06a2c015c44752fa Mon Sep 17 00:00:00 2001
From: Laurent Laville <laurent.laville@gmail.com>
Date: Mon, 27 Sep 2021 08:46:20 +0000
Subject: [PATCH] fix following explain on comment
https://github.com/llaville/php-compatinfo-db/issues/88#issuecomment-927653102
---
data/reference/extension/openssl/40/constants.json | 8 +++++++-
data/reference/extension/openssl/81/constants.json | 13 -------------
src/Application/Query/Init/InitHandler.php | 2 +-
3 files changed, 8 insertions(+), 15 deletions(-)
delete mode 100644 data/reference/extension/openssl/81/constants.json
diff --git a/data/reference/extension/openssl/40/constants.json b/data/reference/extension/openssl/40/constants.json
index f098bcc6..f626e042 100644
--- a/data/reference/extension/openssl/40/constants.json
+++ b/data/reference/extension/openssl/40/constants.json
@@ -37,7 +37,13 @@
{
"name": "OPENSSL_SSLV23_PADDING",
"ext_min": "4.0.4",
- "php_min": "4.0.4"
+ "php_min": "4.0.4",
+ "dependencies": [
+ {
+ "name": "openssl",
+ "constraint": "<3.0.0"
+ }
+ ]
},
{
"name": "PKCS7_BINARY",
|