-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.28 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
{
"name": "devscast/lugha",
"description": "Lugha is a PHP Generative AI framework to build chatbot, RAG systems and AI-powered applications",
"keywords": ["ai", "chatbot", "rag", "llm", "generative", "openai", "embeddings", "nlp"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Devscast\\Lugha\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Devscast\\Lugha\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "bernard-ng",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.3",
"symfony/http-client": "^7.1",
"symfony/serializer": "^7.1",
"symfony/property-access": "^7.1",
"webmozart/assert": "^1.11",
"league/commonmark": "^2.4",
"smalot/pdfparser": "^2.10",
"symfony/filesystem": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^11.1",
"phpstan/phpstan": "^1.11",
"symplify/easy-coding-standard": "^12.2",
"symfony/var-dumper": "^7.1",
"rector/rector": "^1.2"
},
"scripts": {
"lint": "vendor/bin/ecs check --ansi",
"lint-fix": "vendor/bin/ecs check --fix --ansi"
}
}