-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
executable file
·47 lines (47 loc) · 1.36 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
{
"name": "mmucklo/grid-bundle",
"description": "Datagrid for symfony2 or symfony3 or symfony4 or symfony5",
"keywords": ["grid", "jQGrid", "table"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "David Tee"
},
{
"name": "Matthew J Mucklo",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"symfony/framework-bundle": "2.*|3.*|4.*|5.*",
"sensio/framework-extra-bundle": "2.*|3.*|4.*|5.*|6.*",
"symfony/templating": "2.*|3.*|4.*|5.*",
"symfony/translation": "2.*|3.*|4.*|5.*",
"symfony/twig-bundle": "2.*|3.*|4.*|5.*",
"twig/twig": "^1.0||^2.0|^3.0"
},
"require-dev": {
"doctrine/orm": "^2.4",
"doctrine/annotations": "<1.5",
"doctrine/cache": "<1.7",
"doctrine/collections": "<1.5",
"doctrine/instantiator": "<1.1",
"doctrine/common": "<2.8",
"doctrine/dbal": "<2.6",
"doctrine/mongodb-odm": "^1.1",
"phpunit/phpunit": "^5.7.0",
"friendsofphp/php-cs-fixer": "dev-master",
"phpunit/php-code-coverage": "^4.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": { "Dtc\\GridBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
}
}