-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.41 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
{
"name": "nodeloc/flarum-ignore-hidden-tags",
"description": "Let select group ignore hidden tags",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "MIT-enna",
"require": {
"flarum/core": "^1.2.0",
"flarum/tags": "^1.0"
},
"authors": [
{
"name": "Nodeloc",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Nodeloc\\IgnoreHiddenTags\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Ignore Hidden Tags",
"category": "",
"icon": {
"name": "fas fa-eye",
"color": "#238c59",
"backgroundColor": "#fff"
}
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": true,
"css": true,
"locale": true,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": true,
"bundlewatch": true,
"backendTesting": false,
"editorConfig": false,
"styleci": true
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}