-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 939 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
40
{
"name": "davwheat/custom-sidenav-links",
"description": "Add custom links to the side navigation in Flarum.",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "MIT",
"require": {
"flarum/core": "^v1.1.0"
},
"authors": [
{
"name": "David Wheatley",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/davwheat/flarum-ext-custom-sidenav-links/issues",
"source": "https://github.com/davwheat/flarum-ext-custom-sidenav-links",
"forum": "https://discuss.flarum.org/d/26380"
},
"autoload": {
"psr-4": {
"Davwheat\\CustomSidenavLinks\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "davwheat Custom Side Nav Links",
"category": "feature",
"icon": {
"name": "fas fa-link",
"backgroundColor": "#51c5dd",
"color": "#000"
}
}
}
}