-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.6 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
55
56
57
58
59
60
{
"name": "datlechin/flarum-pronouns",
"description": "Add pronouns to user profiles and user cards.",
"keywords": [
"flarum",
"flarum-extension",
"pronouns"
],
"type": "flarum-extension",
"license": "MIT",
"require": {
"flarum/core": "^1.0.0"
},
"support": {
"issues": "https://github.com/datlechin/flarum-pronouns/issues",
"source": "https://github.com/datlechin/flarum-pronouns",
"forum": "https://discuss.flarum.org/d/29740"
},
"homepage": "https://ngoquocdat.com",
"authors": [
{
"name": "Ngo Quoc Dat",
"email": "datlechin@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Datlechin\\Pronouns\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Personal Pronouns",
"category": "",
"icon": {
"name": "fas fa-chess-queen",
"backgroundColor": "#D3241C",
"color": "#fff"
}
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": false,
"css": true,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": false,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": true
}
}
}
}