forked from 2nrwls/flarum-inline-audio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.1 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
{
"name": "2nrwls/flarum-inline-audio",
"description": "Automatic audio link to minimal player.",
"type": "flarum-extension",
"keywords": ["discussion", "audio", "bbcode"],
"license": "MIT",
"authors": [
{
"name": "Billy Wilcosky",
"homepage": "https://www.wilcosky.com",
"role": "Creator"
}
],
"support": {
"issues": "https://github.com/2nrwls/flarum-inline-audio/issues",
"source": "https://github.com/2nrwls/flarum-inline-audio",
"forum": "https://discuss.flarum.org"
},
"homepage": "https://www.wilcosky.com",
"funding": [
{
"type": "website",
"url": "https://www.wilcosky.com"
}
],
"require": {
"flarum/core": "^0.1.0-beta.16 || ^1.0"
},
"autoload": {
"psr-4": {
"2nrwls\\InlineAudio\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Inline Audio",
"category": "feature",
"icon": {
"name": "fas fa-headphones",
"backgroundColor": "#ddd",
"color": "#000"
}
}
}
}