forked from datastax/php-driver
-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.75 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 1.75 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "codelieutenant/scylla-driver",
"type": "php-ext",
"authors": [
{
"name": "Dusan Malusev",
"email": "dusan@dusanmalusev.dev"
}
],
"minimum-stability": "stable",
"license": "Apache-2.0",
"description": "ScyllaDB/Cassandra PHP driver",
"require": {
"php": "^8.2|^8.3|^8.4|^8.5",
"ext-date": "*"
},
"require-dev": {
"pestphp/pest": "^3.8",
"nesbot/carbon": "^3.5",
"symfony/process": "^7.0"
},
"config": {
"platform": {
"php": "8.3.0"
},
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"autoload-dev": {
"psr-4": {
"Cassandra\\Tests\\": "./tests"
},
"files": [
"tests/Support/helpers.php"
]
},
"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"
}
]
}
}