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
|
{
"name": "osmanov/pecl-event",
"type": "php-ext",
"license": "PHP-3.01",
"description": "Provides interface to libevent library.",
"require": {
"php": ">= 5.4.0"
},
"php-ext": {
"extension-name": "event",
"configure-options": [
{
"name": "with-event-pthreads",
"description": "Include libevent's pthreads library and enable thread safety support in Event",
"needs-value": false
},
{
"name": "with-event-extra",
"description": "Event extra functionality support(protocol-specific functionality support including HTTP, DNS, and RPC)",
"needs-value": true
},
{
"name": "with-event-openssl",
"description": "OpenSSL support in Event",
"needs-value": false
},
{
"name": "with-event-ns",
"description": "custom PHP namespace for all Event classes",
"needs-value": true
},
{
"name": "with-openssl-dir",
"description": "OpenSSL installation prefix",
"needs-value": true
},
{
"name": "with-event-libevent-dir",
"description": "libevent installation prefix",
"needs-value": true
},
{
"name": "enable-event-debug",
"description": "Enable debug support in Event",
"needs-value": false
},
{
"name": "enable-event-sockets",
"description": "Enable sockets support in Event",
"needs-value": false
}
]
}
}
|