forked from dav-is/flarum-ext-socialprofile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.03 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
{
"name": "davis/flarum-ext-socialprofile",
"description": "Allows addition of Social Media buttons to profile",
"keywords": ["social", "flarum", "davis", "customization", "profile"],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Connor Davis",
"email": "cdavis@produes.co"
}
],
"support": {
"issues": "https://github.com/dav-is/flarum-social-profile/issues",
"source": "https://github.com/dav-is/flarum-social-profile"
},
"require": {
"flarum/core": "^0.1.0-beta.4"
},
"autoload": {
"psr-4": {
"Davis\\SocialProfile\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Social Profile",
"icon": {
"image": "icon.jpg",
"backgroundColor": "#000",
"backgroundSize": "100%",
"backgroundRepeat": "no-repeat",
"backgroundPosition": "center"
}
}
}
}