forked from APY/APYDataGridBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 2.04 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
{
"name": "apy/datagrid-bundle",
"description": "Symfony Datagrid Bundle",
"keywords": ["Symfony", "datagrid"],
"homepage": "https://github.com/apy/APYDataGridBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Yoann Petit",
"email": "[email protected]"
},
{
"name": "Stanislav Turza",
"email": "[email protected]"
},
{
"name": "Evan Owens",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"symfony/form": "~2.8|~3.0|^4.0",
"symfony/dependency-injection": "~2.8|~3.0|^4.0",
"symfony/config": "~2.8|~3.0|^4.0",
"symfony/http-foundation": "~2.8|~3.0|^4.0",
"symfony/http-kernel": "~2.8|~3.0|^4.0",
"symfony/options-resolver": "~2.8|~3.0|^4.0",
"symfony/security": "~2.8|~3.0|^4.0",
"symfony/serializer": "~2.8|~3.0|^4.0",
"twig/twig": ">=1.5.0"
},
"require-dev": {
"symfony/framework-bundle": "~2.8|~3.0|^4.0",
"symfony/browser-kit": "~2.8|~3.0|^4.0",
"symfony/templating": "~2.8|~3.0|^4.0",
"symfony/expression-language": "~2.8|~3.0|^4.0",
"phpunit/phpunit": "~5.7",
"friendsofphp/php-cs-fixer": "^2.0",
"satooshi/php-coveralls": "^1.0",
"doctrine/orm": "~2.4,>=2.4.5",
"doctrine/mongodb-odm": "^1.1.5"
},
"suggest": {
"ext-intl": "Translate the grid",
"ext-mbstring": "Convert your data with the right charset",
"PHPExcel": "Export the grid (Excel, HTML or PDF)",
"doctrine/orm": "If you want to use Entity as source, please require doctrine/orm",
"doctrine/mongodb-odm": "If you want to use Document as source, please require doctrine/mongodb-odm"
},
"autoload": {
"psr-4": { "APY\\DataGridBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"provide": {
"ext-mongo": "1.5"
}
}