forked from theodo-group/LLPhant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.69 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
{
"name": "theodo-group/llphant",
"description": "LLPhant is a library to help you build Generative AI applications.",
"keywords": ["php", "openai", "GPT-4", "api", "language", "LLM", "vectorstore"],
"license": "MIT",
"authors": [
{
"name": "Maxime Thoonsen"
}
],
"require": {
"php": "^8.1.0",
"guzzlehttp/guzzle": "^7.1.0",
"guzzlehttp/psr7": "^2.6",
"nunomaduro/termwind": "^1.15 || ^2.0",
"openai-php/client": "^v0.7.7 || ^v0.8.4",
"phpoffice/phpword": "^1.1",
"psr/http-message": "^2.0",
"smalot/pdfparser": "^2.7"
},
"suggest": {
"doctrine/orm": "This is required for the DoctrineVectoreStore. This should be working with any version ^2.13.0",
"symfony/cache": "This is one of the possible types of psr/cache needed by doctrine/orm",
"hkulekci/qdrant": "This is required for the QdrantVectoreStore.",
"predis/predis": "This is required for the RedisVectoreStore.",
"elasticsearch/elasticsearch": "This is required for the ElasticsearchVectoreStore."
},
"require-dev": {
"doctrine/orm": "^2.13.0",
"elasticsearch/elasticsearch": "^8.10",
"hkulekci/qdrant": "^v0.4",
"laravel/pint": "^v1.13.7",
"mockery/mockery": "^1.6",
"pestphp/pest": "2.32.0",
"pestphp/pest-plugin-arch": "^2.5.0",
"pestphp/pest-plugin-type-coverage": "2.8.0",
"phpstan/phpstan": "1.10.55",
"predis/predis": "^2.2",
"rector/rector": "^0.16.0",
"symfony/cache": "^7.0",
"symfony/var-dumper": "^6.3.1 || ^7.0.0"
},
"autoload": {
"psr-4": {
"LLPhant\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": false
}
},
"scripts": {
"lint": "pint -v",
"refactor": "rector --debug",
"test:lint": "pint --test -v",
"test:refactor": "rector --dry-run",
"test:types": "phpstan analyse --ansi",
"test:type-coverage": "pest ./tests --type-coverage --min=100",
"test:unit": "pest ./tests/Unit --colors=always",
"test:int": "pest ./tests/Integration --colors=always",
"test": [
"@test:lint",
"@test:refactor",
"@test:types",
"@test:type-coverage",
"@test:unit"
]
},
"archive": {
"exclude": ["examples"]
}
}