-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 831 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
41
42
43
44
{
"name": "justoverclock/flarum-ext-contactme",
"description": "Add Contact Us Page in sidenav",
"keywords": [
"flarum",
"contact form",
"contact"
],
"type": "flarum-extension",
"license": "MIT",
"require": {
"flarum/core": "^1.0.0"
},
"require-dev": {
"flarum/testing": "^1.0.0"
},
"authors": [
{
"name": "Marco Colia",
"homepage": "https://flarum.it",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Justoverclock\\Contactme\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Contactme",
"category": "feature",
"icon": {
"name": "fas fa-at",
"backgroundColor": "red",
"color": "white"
}
},
"flagrow": {
"discuss": ""
}
}
}