forked from KnpLabs/KnpPaginatorBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.1 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
{
"name": "knplabs/knp-paginator-bundle",
"type": "symfony-bundle",
"description": "Paginator bundle for Symfony2 to automate pagination and simplify sorting and other features",
"keywords": ["pager", "paginator", "pagination", "symfony2", "bundle", "knp", "knplabs"],
"homepage": "http://github.com/KnpLabs/KnpPaginatorBundle",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "Symfony2 Community",
"homepage": "http://github.com/KnpLabs/KnpPaginatorBundle/contributors"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.3|~3.0",
"knplabs/knp-components": "~1.2",
"twig/twig": "~1.12|~2"
},
"require-dev": {
"symfony/expression-language": "~2.4|~3.0"
},
"autoload": {
"psr-4": {
"Knp\\Bundle\\PaginatorBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.5.x-dev"
}
}
}