forked from hasan-ozbey/flarum-flamoji
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.02 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
{
"name": "tk/flarum-ext-flamoji",
"description": "自定义表情包",
"keywords": [
"flarum",
"emoji"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "tk",
"homepage": "https://github.com/arnonoyo/flarum-ext-flamoji/"
}
],
"support": {
"issues": "https://github.com/arnonoyo/flarum-ext-flamoji/issues",
"source": "https://github.com/arnonoyo/flarum-ext-flamoji/"
},
"require": {
"flarum/core": "^1.0.2"
},
"conflict": {
"clarkwinkelmann/flarum-ext-emojionearea": "*",
"the-turk/flarum-flamoji": "*"
},
"autoload": {
"psr-4": {
"TheTurk\\Flamoji\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "自定义表情包",
"category": "feature",
"icon": {
"name": "far fa-smile-wink",
"backgroundColor": "#b72a2a",
"color": "#fff"
}
}
}
}