-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 951 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
45
{
"name": "nodeloc/flarum-ext-split-view",
"description": "Side-by-side Markdown editor and preview",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/nodeloc/flarum-ext-split-view",
"source": "https://github.com/nodeloc/flarum-ext-split-view/issues",
"email": "[email protected]"
},
"homepage": "https://www.nodeloc.com",
"require": {
"flarum/core": "^1.7"
},
"authors": [
{
"name": "James",
"role": "Developer"
},
{
"name": "小鱼飘飘",
"role": "Developer",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"nodeloc\\SplitView\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Split View",
"category": "feature",
"icon": {
"name": "fas fa-columns",
"backgroundColor": "#ddd",
"color": "#000"
}
}
}
}