forked from Push-EDX/flarum-ext-chat
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
53 lines (53 loc) · 1.27 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
{
"name": "xelson/flarum-ext-chat",
"description": "Realtime Chat for Flarum!",
"keywords": [
"chat",
"flarum",
"xelson",
"push-edx",
"Xelson"
],
"type": "flarum-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/Xelson/flarum-ext-chat/issues",
"source": "https://github.com/Xelson/flarum-ext-chat",
"forum": "https://discuss.flarum.org/d/25361"
},
"authors": [
{
"name": "Juan"
},
{
"name": "Guillem Pascual",
"email": "[email protected]",
"homepage": "http://pushedx.net"
},
{
"name": "Xelson",
"homepage": "https://neonsky.ru"
}
],
"require": {
"flarum/core": "^1.0",
"flarum/markdown": "^1.0"
},
"extra": {
"flarum-extension": {
"title": "Neon Chat",
"category": "feature",
"icon": {
"image": "icon.svg",
"backgroundColor": "#ffaad4",
"backgroundSize": "cover",
"backgroundPosition": "center"
}
}
},
"autoload": {
"psr-4": {
"Xelson\\Chat\\": "src/"
}
}
}