-
Notifications
You must be signed in to change notification settings - Fork 196
/
composer.json
46 lines (46 loc) · 1.35 KB
/
composer.json
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
{
"name": "apcu/apcu",
"type": "php-ext",
"license": "PHP-3.01",
"description": "APCu - APC User Cache",
"require": {
"php": ">= 7.0.0"
},
"php-ext": {
"extension-name": "apcu",
"configure-options": [
{
"name": "enable-apcu",
"description": "Enable APCu support"
},
{
"name": "disable-apcu-rwlocks",
"description": "Disable rwlocks in APCu"
},
{
"name": "enable-apcu-debug",
"description": "Enable APCu debugging"
},
{
"name": "enable-apcu-clear-signal",
"description": "Enable SIGUSR1 clearing handler"
},
{
"name": "disable-apcu-mmap",
"description": "Disable mmap, falls back on shm"
},
{
"name": "enable-apcu-spinlocks",
"description": "Use spinlocks before flocks"
},
{
"name": "disable-valgrind-checks",
"description": "Disable Valgrind-based memory checks"
},
{
"name": "enable-coverage",
"description": "Include code coverage symbols (DEVELOPERS ONLY!!)"
}
]
}
}