forked from APY/APYDataGridBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.13 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
{
"name": "apy/datagrid-bundle",
"description": "Symfony2 Datagrid Bundle",
"keywords": ["Symfony", "datagrid"],
"homepage": "https://github.com/Abhoryo/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.4",
"symfony/symfony": "~2.3",
"twig/twig": ">=1.23.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1.1",
"friendsofphp/php-cs-fixer": "1.11.*"
},
"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": "2.1-dev"
}
}
}