-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
85 lines (85 loc) · 2.79 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "php-llm/llm-chain",
"type": "library",
"description": "PHP library for building LLM-based and AI-based features and applications.",
"keywords": [
"ai",
"llm",
"huggingface",
"transformers"
],
"license": "MIT",
"authors": [
{
"name": "Christopher Hertel",
"email": "[email protected]"
},
{
"name": "Oskar Stark",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"ext-fileinfo": "*",
"oskarstark/enum-helper": "^1.5",
"phpdocumentor/reflection-docblock": "^5.4",
"phpstan/phpdoc-parser": "^2.1",
"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": "^7.2.3",
"symfony/uid": "^6.4 || ^7.1",
"webmozart/assert": "^1.11"
},
"conflict": {
"mongodb/mongodb": "<1.21"
},
"require-dev": {
"codewithkyrian/chromadb-php": "^0.2.1 || ^0.3",
"codewithkyrian/transformers": "^0.5.3",
"mongodb/mongodb": "^1.21",
"php-cs-fixer/shim": "^3.70",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^11.5",
"probots-io/pinecone-php": "^1.0",
"rector/rector": "^2.0",
"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"
},
"suggest": {
"codewithkyrian/chromadb-php": "For using the ChromaDB as retrieval vector store.",
"codewithkyrian/transformers": "For using the TransformersPHP with FFI to run models in PHP.",
"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."
},
"config": {
"allow-plugins": {
"codewithkyrian/transformers-libsloader": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"PhpLlm\\LlmChain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpLlm\\LlmChain\\Tests\\": "tests/"
}
}
}