-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
51 lines (51 loc) · 1020 Bytes
/
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
{
"name": "itnt/flarum-uitab",
"description": "Add a UI Tab to your Flarum.",
"keywords": [
"flarum",
"extension",
"tab",
"ui"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Golden",
"email": "littlegoldenjin@gmail.com",
"homepage": "https://bbs.csur.fun/u/Golden"
}
],
"support": {
"source": "https://github.com/Littlegolden/flarum-uitab",
"issues": "https://github.com/Littlegolden/flarum-uitab/issues"
},
"funding": [
{
"type": "website",
"url": "https://pay.csur.fun/"
}
],
"require": {
"flarum/core": "^1.0"
},
"autoload": {
"psr-4": {
"ITNT\\UITab\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "UI Tab ",
"category": "feature",
"icon": {
"name": "fas fa-grip-horizontal",
"background": "#f8504b",
"color": "#fff"
}
},
"flagrow": {
"discuss": "https://discuss.flarum.org/d/22880"
}
}
}