-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
57 lines (57 loc) · 1.36 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
{
"name": "blomstra/support-ai",
"description": "The intelligent support a(i)gent for your Flarum community.",
"keywords": [
"extension",
"flarum",
"blomstra",
"support",
"ai",
"gpt",
"openai"
],
"license": "mit",
"type": "flarum-extension",
"authors": [
{
"name": "Daniël Klabbers",
"email": "[email protected]",
"homepage": "https://luceos.com"
}
],
"require": {
"php": ">= 8.1",
"flarum/core": "^1.0.0",
"openai-php/client": "^0.3.5"
},
"autoload": {
"psr-4": {
"Blomstra\\SupportAi\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.1"
},
"autoload-dev": {
"psr-4": {
"Blomstra\\SupportAi\\Tests\\": "tests/"
}
},
"extra": {
"flarum-extension": {
"title": "Support AI",
"category": "feature",
"icon": {
"image": "resources/assets/logo.png",
"backgroundColor": "#E3E7F1",
"backgroundSize": "60%",
"backgroundRepeat": "no-repeat",
"backgroundPosition": "center"
}
},
"extiverse": {
"discuss": ""
}
}
}