forked from block-cat/pagination
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 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
{
"name": "lrysia/pagination",
"description": "Add pagination for DiscussionList(DL) in your flarum. (Forked from block-cat/pagination.)",
"keywords": [
"flarum",
"extension",
"pagination"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "lrysia",
"homepage": "https://github.com/lrysia"
},
{
"name": "BlockCat",
"homepage": "https://github.com/block-cat",
"role": "original author"
}
],
"support": {
"issues": "https://github.com/lrysia/flarum-pagination/issues",
"source": "https://github.com/lrysia/flarum-pagination"
},
"require": {
"flarum/core": "^1.2"
},
"extra": {
"flarum-extension": {
"title": "DL Pagination",
"icon": {
"name": "fas fa-book",
"backgroundColor": "#146EBE",
"color": "#fff"
}
}
},
"autoload": {
"psr-4": {
"Lrysia\\Pagination\\": "src/"
},
"files": [
"src/Overrides/Api/Controller/AbstractSerializeController.php",
"src/Overrides/Filter/AbstractFilterer.php",
"src/Overrides/Search/AbstractSearcher.php"
]
}
}