forked from BabDev/Pagerfanta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.31 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
43
44
{
"name": "pagerfanta/pagerfanta",
"description": "Pagination for PHP 5.3",
"keywords": ["page","paging", "paginator", "pagination"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pablo Díez",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"doctrine/orm": "2.3.*",
"mandango/mandango": "1.0.*@dev",
"doctrine/mongodb-odm": "1.0.*@dev",
"jmikola/geojson": "1.0.*",
"doctrine/phpcr-odm": "1.*",
"propel/propel1": "~1.6",
"solarium/solarium": "3.1.*",
"jackalope/jackalope-doctrine-dbal": "1.*"
},
"minimum-stability": "dev",
"suggest": {
"doctrine/orm": "To use the DoctrineORMAdapter.",
"mandango/mandango": "To use the MandangoAdapter.",
"doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
"doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
"propel/propel1": "To use the PropelAdapter",
"solarium/solarium": "To use the SolariumAdapter."
},
"autoload": {
"psr-0": { "Pagerfanta\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}