-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
102 lines (102 loc) · 2.98 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "acpl/flarum-lscache",
"description": "LSCache implementation for Flarum.",
"keywords": [
"flarum",
"LSCache",
"LiteSpeed",
"Cache"
],
"type": "flarum-extension",
"license": "GPL-3.0-or-later",
"support": {
"issues": "https://github.com/android-com-pl/flarum-lscache/issues",
"source": "https://github.com/android-com-pl/flarum-lscache",
"forum": "https://discuss.flarum.org/d/29475-litespeed-cache-for-flarum"
},
"funding": [
{
"type": "github",
"url": "https://github.com/android-com-pl/flarum-lscache?sponsor=1"
}
],
"require": {
"flarum/core": "^1.8",
"php": ">=8.1"
},
"require-dev": {
"clarkwinkelmann/flarum-ext-author-change": "^1.0",
"flarum/approval": "^1.8",
"flarum/likes": "^1.8",
"flarum/phpstan": "^1.8",
"flarum/tags": "^1.8",
"fof/masquerade": "^2.1",
"fof/merge-discussions": "^1.4",
"sycho/flarum-move-posts": "^0.1.7",
"v17development/flarum-blog": "^v0.8.0"
},
"suggest": {
"blomstra/flarum-redis": "This library allows using Redis as cache, session and for the queue. https://github.com/blomstra/flarum-redis#set-up"
},
"authors": [
{
"name": "Rafał Całka",
"homepage": "https://github.com/rafaucau",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"ACPL\\FlarumLSCache\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "LiteSpeed Cache",
"category": "feature",
"icon": {
"name": "fas fa-bolt",
"backgroundColor": "#2b82d9",
"color": "#fff"
},
"optional-dependencies": [
"flarum/approval",
"flarum/tags",
"flarum/likes",
"fof/masquerade",
"v17development/flarum-blog",
"clarkwinkelmann/flarum-ext-author-change",
"sycho/flarum-move-posts"
]
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": false,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": true,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": true,
"css": false
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyse:phpstan": "phpstan analyse",
"clear-cache:phpstan": "phpstan clear-result-cache"
},
"scripts-descriptions": {
"analyse:phpstan": "Run static analysis"
},
"config": {
"sort-packages": true
}
}