This repository was archived by the owner on Dec 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.45 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
{
"name": "rollerworks/datagrid-bundle",
"description": "Symfony integration bundle for the Rollerworks Datagrid component",
"keywords": ["rollerworks", "datagrid", "bundle"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Sebastiaan Stok",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Rollerworks/datagrid-bundle/contributors"
}
],
"require": {
"php": "^7.0",
"rollerworks/datagrid": "~0.11,>=0.11.1",
"rollerworks/datagrid-twig": "^0.6.1",
"symfony/framework-bundle": "^3.2.6",
"symfony/twig-bundle": "^3.2.6"
},
"require-dev": {
"symfony/browser-kit": "^3.2.6",
"symfony/css-selector": "^3.2.6",
"matthiasnoback/symfony-dependency-injection-test": "^2.0.0",
"matthiasnoback/symfony-service-definition-validator": "^1.2.7",
"symfony/phpunit-bridge": "^3.2.6"
},
"autoload": {
"psr-4": {
"Rollerworks\\Bundle\\DatagridBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rollerworks\\Bundle\\DatagridBundle\\Tests\\": "tests/"
},
"files": ["tests/Redis.php"]
},
"extra": {
"branch-alias": {
"dev-master": "0.6-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}