forked from KyrneDev/whisper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
54 lines (54 loc) · 1.42 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
{
"name": "littlecxm/whisper",
"description": "Private Messaging for Flarum.",
"keywords": [
"flarum",
"friendsofflarum",
"kyrne",
"settings",
"points",
"private message"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Charlie Kern",
"email": "[email protected]",
"homepage": "https://redevs.org"
},
{
"name": "David Wheatleu",
"email": "[email protected]",
"homepage": "https://davwheat.dev"
},
{
"name": "CXM",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/littlecxm/whisper/issues",
"source": "https://github.com/littlecxm/whisper",
"forum": "https://discuss.flarum.org/d/24073-whisper-private-messaging-for-flarum"
},
"require": {
"flarum/core": "^1.0.2"
},
"autoload": {
"psr-4": {
"Kyrne\\Whisper\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Whisper",
"icon": {
"name": "fas fa-comments",
"background": "linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(224,64,251,1) 0%, rgba(33,150,243,1) 100%)",
"color": "#000"
},
"category": "feature"
}
}
}