-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.19 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
{
"name": "keven1024/flarum-ext-chinese-slug",
"description": "A Flarum extension. Use chinese as slug in discussion URL. Base on PipecraftNet/flarum-ext-id-slug",
"keywords": [
"flarum",
"slug",
"slug-driver"
],
"type": "flarum-extension",
"license": "AGPL-3.0",
"authors": [
{
"name": "Keven1024",
"email": "[email protected]"
},
{
"name": "Pipecraft",
"email": "[email protected]"
}
],
"support": {
"source": "https://gitea.fudaoyuan.icu/fudaoyuan.icu/flarum-ext-chinese-slug"
},
"homepage": "https://fudaoyuan.icu",
"require": {
"flarum/core": "^1.0"
},
"autoload": {
"psr-4": {
"Keven1024\\ChineseSlug\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Chinese Slug",
"category": "feature",
"icon": {
"name": "fas fa-language",
"backgroundColor": "#22d3ee",
"color": "#fff"
}
},
"flagrow": {
"discuss": "https://discuss.flarum.org/"
}
}
}