forked from forrest79/pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 843 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
{
"name": "forrest79/pagination",
"description": "Create pages list for pagination with logarithmic scale, neighbour pages or all pages.",
"keywords": ["php", "pagination", "paginator", "pages", "logarithmic", "neighbour"],
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jakub Trmota",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 | ^8.0"
},
"require-dev": {
"forrest79/phpcs": "^0.3",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0"
},
"autoload": {
"psr-4": {
"Forrest79\\Pagination\\": "src/"
}
},
"scripts": {
"tests": "php tests/tests.php",
"phpcs": "vendor/bin/phpcs -s src tests",
"phpstan": "vendor/bin/phpstan analyse src tests"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}