-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.23 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.23 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
{
"name": "memvector/ext-memvector",
"type": "php-ext",
"license": "MIT",
"description": "High-performance Local Vector Storage & Embedding Engine for PHP",
"homepage": "https://github.com/memvector/ext-memvector",
"authors": [
{
"name": "Bruce Dou",
"email": "doubaokun@gmail.com"
}
],
"support": {
"issues": "https://github.com/memvector/ext-memvector/issues",
"source": "https://github.com/memvector/ext-memvector"
},
"require": {
"php": ">=8.2"
},
"replace": {
"ext-memvector": "*"
},
"php-ext": {
"extension-name": "memvector",
"configure-options": [
{
"name": "enable-memvector",
"description": "Enable MemVector vector store support"
},
{
"name": "enable-memvector-avx2",
"description": "Enable AVX2 SIMD optimizations (default: auto-detect)"
},
{
"name": "with-llama",
"needs-value": true,
"description": "Enable llama.cpp embedding and reranker support. Specify the llama.cpp installation directory."
}
]
}
}