forked from v17development/flarum-user-badges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.86 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
61
62
{
"name": "v17development/flarum-user-badges",
"description": "Adds user badges to your Flarum community",
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "V17 Development",
"email": "info@v17.dev"
}
],
"homepage": "https://v17.dev/projects/flarum-user-badges",
"support": {
"forum": "https://discuss.flarum.org/d/26449",
"issues": "https://github.com/v17development/flarum-user-badges/issues",
"source": "https://github.com/v17development/flarum-user-badges",
"docs": "https://community.v17.dev/knowledgebase/category/flarum-user-badges"
},
"autoload": {
"psr-4": {
"V17Development\\FlarumUserBadges\\": "src/"
}
},
"require": {
"ext-json": "*",
"flarum/core": "^1.3.1"
},
"suggest": {
"askvortsov/flarum-auto-moderator": "Allows you to automatically hand out badges to users"
},
"extra": {
"flarum-extension": {
"title": "User badges",
"category": "feature",
"icon": {
"name": "fas fa-user-tag",
"backgroundColor": "#00ccb3",
"color": "#225650"
},
"optional-dependencies": [
"askvortsov/flarum-auto-moderator"
]
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": true,
"css": true,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": false,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": true
}
}
}
}