-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (64 loc) · 1.64 KB
/
composer.json
File metadata and controls
65 lines (64 loc) · 1.64 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "syntaxoutlaw/threadify",
"description": "A Flarum extension that adds threaded discussions with visual indentation to your forum, making complex conversations easier to follow.",
"type": "flarum-extension",
"version": "1.2.0",
"license": "MIT",
"keywords": [
"flarum",
"extension",
"threading",
"discussions",
"forum",
"nested",
"replies"
],
"authors": [
{
"name": "SyntaxOutlaw",
"email": "joel@graycode.ie",
"homepage": "https://github.com/syntaxoutlaw"
}
],
"require": {
"flarum/core": "^1.8.0",
"flarum/mentions": "^1.8.0"
},
"require-dev": {
"flarum/testing": "^1.8.0"
},
"autoload": {
"psr-4": {
"SyntaxOutlaw\\Threadify\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Threadify",
"category": "feature",
"icon": {
"name": "fas fa-comments",
"backgroundColor": "#4D698E",
"color": "#fff"
}
},
"flarum-cli": {
"modules": {
"js": "js/dist"
}
}
},
"support": {
"issues": "https://github.com/syntaxoutlaw/threadify/issues",
"source": "https://github.com/syntaxoutlaw/threadify",
"docs": "https://github.com/syntaxoutlaw/threadify#readme"
},
"funding": [
{
"type": "other",
"url": "https://coff.ee/syntaxoutlaw"
}
],
"minimum-stability": "stable",
"prefer-stable": true
}