forked from datastax/php-driver
-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
60 lines (60 loc) · 1.38 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "codelieutenant/scylla-driver",
"version": "1.3.13",
"type": "php-ext",
"authors": [
{
"name": "Dusan Malusev",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"license": "Apache-2.0",
"description": "ScyllaDB/Cassandra PHP driver",
"require": {
"php": ">= 8.1",
"ext-date": "*"
},
"php-ext": {
"extension-name": "cassandra",
"configure-options": [
{
"name": "enable-debug",
"description": "Enable debug mode"
},
{
"name": "with-cpu-type",
"description": "CPU type to optimize for",
"needs-value": true
},
{
"name": "enable-sanitizers",
"description": "link with address and mem sanitizers"
},
{
"name": "enable-lto",
"description": "Enable LTO (Link Time Optimization)"
},
{
"name": "enable-avx",
"description": "Enable AVX"
},
{
"name": "enable-avx2",
"description": "Enable AVX2"
},
{
"name": "enable-libuv-static",
"description": "whether to link with libuv statically"
},
{
"name": "enable-driver-static",
"description": "whether to link with driver statically"
},
{
"name": "enable-libcassandra",
"description": "whether to link with libcassandra"
}
]
}
}