forked from Log1x/pagi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 915 Bytes
/
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": "log1x/pagi",
"type": "package",
"license": "MIT",
"description": "A better WordPress pagination.",
"authors": [
{
"name": "Brandon Nifong",
"email": "[email protected]"
}
],
"keywords": [
"wordpress",
"sage",
"roots",
"laravel",
"pagination"
],
"support": {
"issues": "https://github.com/log1x/pagi/issues"
},
"autoload": {
"psr-4": {
"Log1x\\Pagi\\": "src/"
}
},
"require": {
"php": "^7.3|^8.0",
"illuminate/pagination": "^7.0|^8.0|^9.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5"
},
"extra": {
"acorn": {
"providers": [
"Log1x\\Pagi\\PagiServiceProvider"
],
"aliases": {
"Pagi": "Log1x\\Pagi\\PagiFacade"
}
}
},
"scripts": {
"lint": [
"phpcs --ignore=vendor,src/resources --extensions=php --standard=PSR12 ."
]
}
}