-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 870 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
{
"name": "dotronglong/flarum-hide-me",
"description": "Allow to hide real author's identity",
"keywords": [
"extension",
"flarum",
"post",
"discussion",
"hide",
"author"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Long Do",
"email": "[email protected]",
"homepage": "https://dotronglong.com/"
}
],
"require": {
"flarum/core": "^0.1.0-beta.8"
},
"extra": {
"flarum-extension": {
"title": "Hide Me",
"icon": {
"name": "fas fa-user-shield",
"backgroundColor": "#e74c3c",
"color": "#fff"
}
}
},
"autoload": {
"psr-4": {
"Long\\HideMe\\": "src/"
}
}
}