-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 977 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
{
"name": "bentools/pager",
"type": "library",
"description": "A simple pager class with delta management",
"keywords": ["pager", "page", "pagination", "delta"],
"homepage": "/~https://github.com/bpolaszek/bentools-pager",
"license": "MIT",
"authors": [
{
"name": "Beno!t POLASZEK",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"psr/http-message": "^1.0",
"bentools/uri-factory": "^1.0||^2.0",
"bentools/querystring": "^1.0"
},
"autoload": {
"psr-4": {"BenTools\\Pager\\": "src"}
},
"autoload-dev": {
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"require-dev": {
"phpunit/phpunit": "@stable",
"satooshi/php-coveralls": "@stable",
"squizlabs/php_codesniffer": "@stable",
"symfony/var-dumper": "^3.3",
"guzzlehttp/psr7": "^1.4"
}
}