-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.16 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": "kora/grid-symfony",
"type": "library",
"description": "Grid using symfony components",
"license": "MIT",
"authors": [
{
"name": "Pawel Gierlasinski",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Kora\\GridBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/gierlas/grid"
},
{
"type": "vcs",
"url": "https://github.com/gierlas/data-provider"
}
],
"require": {
"php": "^7.0",
"kora/data-provider": "dev-master",
"kora/grid": "dev-master",
"symfony/form": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"mockery/mockery": "^1.0",
"twig/twig": "^2.4",
"symfony/dependency-injection": "^3.3",
"symfony/symfony": "^3.0",
"matthiasnoback/symfony-dependency-injection-test": "^2.1"
},
"suggest": {
"twig/twig": "If you'd like to use twig column renderer"
}
}