forked from FriendsOfFlarum/split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.32 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
51
52
53
54
{
"name": "flagrow/split",
"description": "Separate posts from one discussion into its own, splits discussions.",
"keywords": [
"split",
"flarum",
"flagrow"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Matteo Pompili",
"email": "[email protected]"
},
{
"name": "Daniël Klabbers",
"email": "[email protected]",
"homepage": "http://luceos.com"
},
{
"name": "Connor Davis",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/flagrow/split/issues",
"source": "https://github.com/flagrow/split"
},
"require": {
"flarum/core": "^0.1.0-beta.8"
},
"extra": {
"flarum-extension": {
"title": "Split",
"icon": {
"name": "fas fa-code-branch",
"backgroundColor": "#f4f4f4",
"color": "#5f4bb6"
},
"flagrow": {
"discuss": "https://discuss.flarum.org/d/1903"
}
},
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"autoload": {
"psr-4": {
"Flagrow\\Split\\": "src/"
}
}
}