-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
64 lines (64 loc) · 1.42 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
55
56
57
58
59
60
61
62
63
64
{
"name": "the-turk/flarum-diff",
"description": "View post edit histories.",
"keywords": [
"flarum",
"edit",
"history",
"tracker",
"logger",
"diff"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Hasan Özbey",
"email": "[email protected]",
"homepage": "https://github.com/the-turk"
},
{
"name": "IanM",
"homepage": "https://discuss.flarum.org/u/ianm"
},
{
"name": "Alexander Skvortsov",
"email": "[email protected]",
"homepage": "https://github.com/askvortsov1"
},
{
"name": "David Wheatley",
"email": "[email protected]",
"homepage": "https://github.com/davwheat"
}
],
"support": {
"issues": "https://github.com/the-turk/flarum-diff/issues",
"source": "https://github.com/the-turk/flarum-diff",
"forum": "https://discuss.flarum.org/d/22779-diff-for-flarum"
},
"require": {
"flarum/core": "^1.2.0",
"jfcherng/php-diff": "^6.11.6",
"ext-json": "*"
},
"suggest": {
"the-turk/flarum-quiet-edits": "Recommended if you want to save storage volume"
},
"autoload": {
"psr-4": {
"TheTurk\\Diff\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Diff",
"category": "feature",
"icon": {
"name": "fas fa-history",
"backgroundColor": "#b72a2a",
"color": "#fff"
}
}
}
}