-
Notifications
You must be signed in to change notification settings - Fork 343
/
composer.json
73 lines (73 loc) · 2.61 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
64
65
66
67
68
69
70
71
72
73
{
"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]"
},
{
"name": "Nicolas Potier",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/form": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/config": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/http-foundation": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/http-kernel": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/options-resolver": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/security-bundle": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/serializer": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"twig/twig": "^2.14 || ^3.0"
},
"require-dev": {
"symfony/framework-bundle": "^4.3 || ^5.0 || ^6.0",
"symfony/browser-kit": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/templating": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/expression-language": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.0",
"php-coveralls/php-coveralls": "^2.0",
"doctrine/orm": "~2.10,>=2.10.0",
"doctrine/mongodb-odm": "^2.2",
"rector/rector": "^0.12.13",
"dg/bypass-finals": "^1.3",
"symfony/security-bundle": "^3.0 || ^4.0 || ^5.0",
"symfony/twig-bundle": "^3.0 || ^4.0 || ^5.0",
"doctrine/doctrine-bundle": "^2.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",
"jms/translation-bundle": "If you want to use translations"
},
"autoload": {
"psr-4": { "APY\\DataGridBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"provide": {
"ext-mongo": "1.5"
}
}