forked from KnpLabs/knp-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (39 loc) · 1.27 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": "knplabs/knp-components",
"type": "library",
"description": "Knplabs component library",
"keywords": ["components", "paginator", "pager", "knp", "knplabs"],
"homepage": "http://github.com/KnpLabs/knp-components",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "Symfony Community",
"homepage": "http://github.com/KnpLabs/knp-components/contributors"
}
],
"require": {
"php": ">=5.3.2"
},
"suggest": {
"doctrine/orm" : "to allow usage pagination with Doctrine ORM",
"doctrine/common" : "to allow usage pagination with Doctrine ArrayCollection",
"doctrine/mongodb-odm" : "to allow usage pagination with Doctrine ODM MongoDB",
"ruflin/Elastica" : "to allow usage pagination with ElasticSearch Client",
"propel/propel1" : "to allow usage pagination with Propel ORM",
"solarium/solarium" : "to allow usage pagination with Solarium Client"
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
},
"autoload": {
"psr-0": {
"Knp\\Component": "src/"
}
}
}