forked from APY/APYDataGridBundle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.17 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": "internations/datagrid-bundle",
"type": "symfony-bundle",
"description": "Simple datagrid bundle for Symfony",
"keywords": [
"datagrid",
"symfony",
"symfony-bundle"
],
"license": "MIT",
"homepage": "https://github.com/InterNations/DataGridBundle",
"authors": [
{
"name": "Stanislav Turza",
"email": "[email protected]"
},
{
"name": "Lars Strojny",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.5",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/security": "^4.4|^5.0",
"twig/twig": "^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": ">4",
"symfony/symfony": "^4.4|^5.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.5"
},
"autoload": {
"psr-4": {
"InterNations\\DataGridBundle\\": "src/InterNations"
}
},
"autoload-dev": {
"psr-4": {
"InterNations\\DataGridBundle\\Tests\\": "tests/InterNations"
}
}
}