-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.16 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.16 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
{
"name": "codewithkyrian/chromadb-php",
"description": "A PHP client for the Chroma Open Source Embedding Database",
"keywords": [
"chromadb",
"php",
"embedding",
"database",
"vectors",
"semantic",
"search",
"chroma",
"open-source"
],
"type": "library",
"license": "MIT",
"require": {
"php": "^8.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"php-http/discovery": "^1.20"
},
"require-dev": {
"pestphp/pest": "^2.19",
"symfony/var-dumper": "^6.3",
"mockery/mockery": "^1.6",
"symfony/process": "^6.4 || ^7.3 || ^8.0",
"guzzlehttp/guzzle": "^7.10"
},
"autoload": {
"psr-4": {
"Codewithkyrian\\ChromaDB\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codewithkyrian\\ChromaDB\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Kyrian Obikwelu",
"email": "kyrianobikwelu@gmail.com"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"scripts": {
"test": "vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage"
}
}