-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
69 lines (69 loc) · 2.3 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
61
62
63
64
65
66
67
68
69
{
"name": "php-llm/llm-chain",
"description": "A slim PHP component with tooling around LLMs.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Christopher Hertel",
"email": "mail@christopher-hertel.de"
}
],
"require": {
"php": ">=8.2",
"oskarstark/enum-helper": "^1.5",
"phpdocumentor/reflection-docblock": "^5.4",
"psr/cache": "^3.0",
"psr/log": "^3.0",
"symfony/clock": "^6.4 || ^7.1",
"symfony/http-client": "^6.4 || ^7.1",
"symfony/property-access": "^6.4 || ^7.1",
"symfony/property-info": "^6.4 || ^7.1",
"symfony/serializer": "^6.4 || ^7.1",
"symfony/type-info": "^6.4 || ^7.1",
"symfony/uid": "^6.4 || ^7.1",
"webmozart/assert": "^1.11"
},
"require-dev": {
"codewithkyrian/chromadb-php": "^0.2.1",
"mongodb/mongodb": "^1.20",
"php-cs-fixer/shim": "^3.64",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^11.3",
"probots-io/pinecone-php": "^1.0",
"rector/rector": "^1.2",
"symfony/console": "^6.4 || ^7.1",
"symfony/css-selector": "^6.4 || ^7.1",
"symfony/dom-crawler": "^6.4 || ^7.1",
"symfony/dotenv": "^6.4 || ^7.1",
"symfony/event-dispatcher": "^6.4 || ^7.1",
"symfony/finder": "^6.4 || ^7.1",
"symfony/process": "^6.4 || ^7.1",
"symfony/var-dumper": "^6.4 || ^7.1"
},
"conflict": {
"mongodb/mongodb": "<1.20",
"phpdocumentor/reflection-docblock": ">=5.6"
},
"suggest": {
"codewithkyrian/chromadb-php": "For using the ChromaDB as retrieval vector store.",
"mongodb/mongodb": "For using MongoDB Atlas as retrieval vector store.",
"probots-io/pinecone-php": "For using the Pinecone as retrieval vector store.",
"symfony/css-selector": "For using the YouTube transcription tool.",
"symfony/dom-crawler": "For using the YouTube transcription tool."
},
"autoload": {
"psr-4": {
"PhpLlm\\LlmChain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpLlm\\LlmChain\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}