-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.51 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
{
"name": "imt/data-grid",
"description": "This library provides a simple, powerful and fully customizable tool for generating data-bound grids",
"type": "library",
"keywords": [
"DataGrid",
"jQuery",
"jqGrid"
],
"homepage": "http://github.com/IgorTimoshenko/IMTDataGrid",
"license": "MIT",
"authors": [
{
"name": "Igor Timoshenko",
"email": "igor.timoshenko@i.ua",
"homepage": "http://igortimoshenko.com"
}
],
"support": {
"email": "igor.timoshenko@i.ua",
"issues": "http://github.com/IgorTimoshenko/IMTDataGrid/issues",
"wiki": "http://github.com/IgorTimoshenko/IMTDataGrid/wiki",
"source": "http://github.com/IgorTimoshenko/IMTDataGrid"
},
"require": {
"php": ">=5.3.2",
"symfony/event-dispatcher": ">=2.0",
"symfony/templating": ">=2.0",
"symfony/validator": ">=2.0",
"doctrine/orm": ">=2.2,<2.4-dev"
},
"require-dev": {
"symfony/http-foundation": ">=2.0",
"phploc/phploc": "2.*",
"squizlabs/php_codesniffer": "1.*",
"phpunit/phpunit": "3.7.*",
"satooshi/php-coveralls": "v0.6.1"
},
"suggest": {
"imt/data-grid-bundle": "to allow integration into Symfony2"
},
"autoload": {
"psr-4": {
"IMT\\DataGrid\\": "src/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "0.9.x-dev"
}
}
}