This repository was archived by the owner on Sep 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.68 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"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": "bernard@devscast.tech"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"symfony/http-client": "^7.2",
"webmozart/assert": "^1.11",
"symfony/filesystem": "^7.2"
},
"suggest": {
"smalot/pdfparser": "This is required for PDF parsing. (^2.12)",
"league/commonmark": "This is required for Markdown parsing. (^2.6)",
"doctrine/orm": "This is require for ORM Vector Stores support. (^3.2)"
},
"require-dev": {
"phpunit/phpunit": "^11.1",
"phpstan/phpstan": "^1.11",
"symplify/easy-coding-standard": "^12.2",
"symfony/var-dumper": "^7.2",
"rector/rector": "^1.2",
"league/commonmark": "^2.6",
"smalot/pdfparser": "^2.12",
"doctrine/orm": "^3.3",
"doctrine/dbal": "^3.9"
},
"scripts": {
"app:cs": [
"php vendor/bin/ecs check --ansi",
"php -dmemory_limit=-1 vendor/bin/phpstan analyse --ansi",
"php vendor/bin/rector --dry-run --ansi"
],
"app:test": "vendor/bin/phpunit"
}
}