forked from APY/APYDataGridBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.3 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
{
"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": "abhoryo@free.fr"
},
{
"name": "Stanislav Turza",
"email": "stanislav.turza@gmail.com"
},
{
"name": "Evan Owens",
"email": "eaowens@gmail.com"
}
],
"require": {
"php": ">=5.6",
"symfony/symfony": "~2.8|~3.0|^4.0",
"twig/twig": ">=1.5.0",
"doctrine/orm": "~2.4,>=2.4.5",
"doctrine/mongodb-odm": "^1.1.5"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"friendsofphp/php-cs-fixer": "^2.0",
"satooshi/php-coveralls": "^1.0"
},
"suggest": {
"ext-intl": "Translate the grid",
"ext-mbstring": "Convert your data with the right charset",
"PHPExcel": "Export the grid (Excel, HTML or PDF)"
},
"autoload": {
"psr-4": { "APY\\DataGridBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
},
"provide": {
"ext-mongo": "1.5"
}
}