forked from BabDev/Pagerfanta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.15 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
{
"name": "icapps/pagerfanta",
"type": "library",
"description": "Pagination for PHP",
"keywords": ["page", "paging", "paginator", "pagination"],
"license": "MIT",
"require": {
"php": "^7.2",
"ext-json": "*",
"symfony/deprecation-contracts": "^2.1"
},
"require-dev": {
"doctrine/collections": "^1.4",
"doctrine/dbal": "^2.5",
"doctrine/orm": "^2.5",
"doctrine/phpcr-odm": "^1.3",
"friendsofphp/php-cs-fixer": "^2.16.3",
"jackalope/jackalope-doctrine-dbal": "^1.3",
"mandango/mandango": "^1.0@dev",
"phpunit/phpunit": "^8.5 || ^9.0",
"propel/propel": "^2.0@dev",
"propel/propel1": "^1.7",
"ruflin/elastica": "^1.3 || ^2.0 || ^3.0 || ^5.0 || ^6.0 || ^7.0",
"solarium/solarium": "^2.3 || ^3.0 || ^4.0 || ^5.0"
},
"autoload": {
"psr-4": {
"Pagerfanta\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pagerfanta\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-2.x": "2.x-dev"
}
},
"minimum-stability": "dev"
}