-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
32 lines (32 loc) · 973 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
{
"name": "beberlei/porpaginas",
"description": "Library that generically solves several pagination issues with DAO/repository abstractions.",
"keywords": ["page","paging", "paginator", "pagination"],
"type": "library",
"license": "MIT",
"authors": [
{"name": "Benjamin Eberlei", "email": "[email protected]"}
],
"autoload": {
"psr-0": {"Porpaginas\\": "src/"}
},
"autoload-dev": {
"psr-0": {"Porpaginas\\": "tests/"}
},
"require": {
"php": "^8"
},
"require-dev": {
"doctrine/orm": ">=2.2",
"pagerfanta/pagerfanta": "@stable",
"knplabs/knp-components": "@stable",
"symfony/event-dispatcher": "@stable",
"twig/twig": "@stable",
"phake/phake": "@stable",
"phpunit/phpunit": "^7|^8|^9",
"symfony/cache": "@stable"
},
"suggest": {
"pagerfanta/pagerfanta": "For rendering pagination with Pagerfanta"
}
}