forked from KnpLabs/knp-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (59 loc) · 1.89 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"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"
},
"require-dev": {
"symfony/event-dispatcher": "~2.5",
"doctrine/orm": "~2.4",
"doctrine/mongodb-odm": "~1.0@beta",
"doctrine/phpcr-odm": "~1.2",
"jackalope/jackalope-doctrine-dbal": "~1.2",
"phpunit/phpunit": "~4.2",
"ruflin/elastica": "~1.0",
"symfony/property-access": ">=2.3"
},
"suggest": {
"symfony/property-access": "To allow sorting arrays",
"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",
"doctrine/phpcr-odm" : "to allow usage pagination with Doctrine ODM PHPCR",
"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.3.x-dev"
}
},
"autoload": {
"psr-0": {
"Knp\\Component": "src"
}
},
"autoload-dev": {
"psr-0": {
"Test": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}