-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.13 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "undkonsorten/easychat",
"description": "A TYPO3 chatbot/assistant without third party tools. Only TYPO3 + LLM endpoint needed (ChatGpt, Mistral...). Privacy focused (GDPR). Chats stored in TYPO3 only.",
"keywords": ["typo3", "ai", "chat", "chatbot", "assistant"],
"type": "typo3-cms-extension",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Eike Starkmann",
"email": "es@undkonsorten.com"
}
],
"require": {
"php": "^8.2",
"typo3/cms-core": "^12.4 | ^13.4",
"typo3/cms-extbase": "^12.4 | ^13.4",
"typo3/cms-reactions": "^12.4 | ^13.4",
"typo3/cms-backend": "^12.4 | ^13.4",
"symfony/ai-chat": "^0.1",
"symfony/ai-store": "^0.1",
"symfony/ai-generic-platform": "^0.1"
},
"suggest": {
"symfony/ai-qdrant-store": "^0.1",
"symfony/ai-similarity-search-tool": "^0.1"
},
"config": {
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "easychat"
},
"branch-alias": {
"dev-main": "0.1.x-dev"
}
},
"autoload": {
"psr-4": {
"Undkonsorten\\Easychat\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Undkonsorten\\Easychat\\Tests\\": "Tests/"
}
}
}