-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (24 loc) · 777 Bytes
/
composer.json
File metadata and controls
25 lines (24 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "dezull/dbal-paginator-service-provider",
"type": "library",
"description": "A Doctrine DBAL paginator provider for Silex, based on knp pager components and knp-paginator-bundle.",
"keywords": ["silex", "paginator", "dbal", "paginator provider", "dbal paginator provider"],
"homepage": "https://github.com/dezull/DBALPaginatorServiceProvider",
"license": "MIT",
"authors": [
{
"name": "Dzul Nizam",
"email": "dezull@gmail.com"
}
],
"require": {
"php": ">=5.3.0",
"doctrine/dbal": "~2.2",
"knplabs/knp-paginator-bundle": "2.3.*"
},
"autoload": {
"psr-0": {
"Dezull\\Silex\\Provider\\DBALPaginatorServiceProvider": "src/"
}
}
}