-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
33 lines (33 loc) · 974 Bytes
/
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
{
"name": "gpslab/pagination-bundle",
"license": "MIT",
"type": "symfony-bundle",
"description": "Pagination bundle",
"keywords": ["php", "pagination", "symfony", "doctrine"],
"homepage": "http://github.com/gpslab/pagination-bundle",
"autoload": {
"psr-4": {
"GpsLab\\Bundle\\PaginationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GpsLab\\Bundle\\PaginationBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.4.0",
"symfony/http-kernel": "~2.3|~3.0|~4.0|~5.0",
"symfony/dependency-injection": "~2.3|~3.0|~4.0|~5.0",
"symfony/expression-language": "~2.3|~3.0|~4.0|~5.0",
"symfony/config": "~2.3|~3.0|~4.0|~5.0",
"symfony/routing": "~2.3|~3.0|~4.0|~5.0",
"symfony/yaml": "~2.3|~3.0|~4.0|~5.0",
"sensio/framework-extra-bundle": "~3.0|~4.0|~5.0",
"doctrine/orm": "~2.4|~2.5|~2.6",
"twig/twig": "^1.34|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.36"
}
}