-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
68 lines (68 loc) · 1.73 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
{
"name": "datlechin/flarum-chatgpt",
"description": "ChatGPT: AI-powered Auto-Reply Extension for Flarum.",
"keywords": [
"flarum",
"chatgpt",
"openai"
],
"type": "flarum-extension",
"license": "MIT",
"require": {
"php": "^8.1",
"flarum/core": "^1.8.5",
"openai-php/client": "^0.10.1"
},
"authors": [
{
"name": "Ngo Quoc Dat",
"email": "datlechin@gmail.com",
"role": "Developer",
"homepage": "https://ngoquocdat.dev"
}
],
"homepage": "https://ngoquocdat.dev",
"support": {
"source": "https://github.com/datlechin/flarum-chatgpt",
"forum": "https://discuss.flarum.org/d/32535"
},
"autoload": {
"psr-4": {
"Datlechin\\FlarumChatGPT\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "ChatGPT",
"category": "feature",
"icon": {
"image": "icon.svg"
}
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": false,
"css": true,
"locale": true,
"gitConf": true,
"githubActions": false,
"prettier": true,
"typescript": true,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": false
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}