-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.4 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
{
"name": "craftsnippets/craft-pagination-toolbox",
"description": "Pagination toolbox",
"type": "craft-plugin",
"version": "1.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"pagination toolbox",
"pagination"
],
"support": {
"docs": "https://craftsnippets.com/docs/pagination-toolbox/",
"issues": "https://github.com/craft-snippets/Craft-pagination-toolbox/issues"
},
"license": "MIT",
"authors": [
{
"name": "Piotr Pogorzelski",
"homepage": "http://craftsnippets.com/"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"forrest79/pagination": "*"
},
"autoload": {
"psr-4": {
"craftsnippets\\paginationtoolbox\\": "src/"
}
},
"extra": {
"name": "Pagination toolbox",
"handle": "pagination-toolbox",
"developer": "Piotr Pogorzelski",
"developerUrl": "http://craftsnippets.com/",
"documentationUrl": "https://craftsnippets.com/docs/pagination-toolbox/",
"changelogUrl": "https://github.com/craft-snippets/Craft-pagination-toolbox/blob/master/CHANGELOG.md",
"components": {
"imageToolboxService": "craftsnippets\\paginationtoolbox\\services\\PaginationService"
},
"class": "craftsnippets\\paginationtoolbox\\PaginationToolbox"
}
}