forked from franga2000/direct-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.33 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
{
"name": "zerosonesfun/direct-links",
"description": "Adds some direct links and composer auto-fill capabilities.",
"type": "flarum-extension",
"keywords": ["discussion", "features", "links"],
"license": "MIT",
"authors": [
{
"name": "Clark Winkelmann",
"homepage": "https://clarkwinkelmann.com/",
"role": "Creator"
},
{
"name": "Billy Wilcosky",
"homepage": "https://www.wilcosky.com/",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/zerosonesfun/direct-links/issues",
"source": "https://github.com/zerosonesfun/direct-links",
"forum": "https://discuss.flarum.org"
},
"homepage": "https://www.wilcosky.com",
"funding": [
{
"type": "website",
"url": "https://www.wilcosky.com"
}
],
"require": {
"flarum/core": "^1.2.0"
},
"autoload": {
"psr-4": {
"ZerosOnesFun\\DirectLinks\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Direct Links",
"category": "feature",
"icon": {
"name": "fas fa-link",
"backgroundColor": "#ddd",
"color": "#000"
}
}
}
}