-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
47 lines (47 loc) · 1.12 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
{
"name": "allanpichardo/mysql-vector",
"description": "Perform vector operations natively on MySQL",
"type": "library",
"license": "MIT",
"version": "2.0.1",
"authors": [
{
"name": "Allan Pichardo",
"email": "allan.pichardo@gmail.com",
"homepage": "https://allanpichardo.com"
}
],
"require": {
"php": ">=8.0",
"ext-mysqli": "*",
"bdelespierre/php-kmeans": "^2.2",
"ext-mbstring": "*",
"ext-intl": "*",
"symfony/polyfill-intl-normalizer": "^1.28",
"symfony/polyfill-mbstring": "^1.28",
"ext-ctype": "*",
"symfony/polyfill-ctype": "^1.28",
"ext-iconv": "*",
"symfony/polyfill-iconv": "^1.28",
"ankane/onnxruntime": "^0.2.1"
},
"replace": {
"symfony/polyfill-intl-normalizer": "^1.28",
"symfony/polyfill-mbstring": "^1.28",
"symfony/polyfill-ctype": "^1.28",
"symfony/polyfill-iconv": "^1.28"
},
"autoload": {
"psr-4": {
"MHz\\MysqlVector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MHz\\MysqlVector\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}