forked from KnpLabs/KnpPaginatorBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.25 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": "knplabs/knp-paginator-bundle",
"type": "symfony-bundle",
"description": "Paginator bundle for Symfony to automate pagination and simplify sorting and other features",
"keywords": ["pager", "paginator", "pagination", "symfony", "bundle", "knp", "knplabs"],
"homepage": "http://github.com/KnpLabs/KnpPaginatorBundle",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "Symfony Community",
"homepage": "http://github.com/KnpLabs/KnpPaginatorBundle/contributors"
}
],
"require": {
"php": "^7.1",
"knplabs/knp-components": "^1.3 || ^2.0",
"symfony/framework-bundle": "^3.4 || ^4.0",
"symfony/translation": "^3.4 || ^4.0",
"twig/twig": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^6.4 || ^8.0",
"symfony/expression-language": "^3.4 || ^4.0"
},
"autoload": {
"psr-4": {
"Knp\\Bundle\\PaginatorBundle\\": ""
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.1.x-dev"
}
}
}