forked from contributte/datagrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 949 Bytes
/
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
{
"name": "ublaboo/datagrid",
"type": "library",
"description": "DataGrid for Nette Framework: filtering, sorting, pagination, tree view, table view, translator, etc",
"keywords": ["datagrid", "grid", "nette"],
"homepage": "http://ublaboo.paveljanda.com/datagrid",
"license": ["MIT"],
"support": {
"issues": "https://github.com/ublaboo/datagrid/issues"
},
"authors": [
{
"name": "Pavel Janda",
"homepage": "http://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Ublaboo\\DataGrid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ublaboo\\DataGrid\\Tests\\": "tests"
}
},
"require": {
"nette/application" : "^2.3.0",
"nette/utils" : "^2.3.0",
"nette/forms" : "^2.3.0",
"ublaboo/responses" : "~1.0.0",
"symfony/property-access": "~3.0"
},
"require-dev": {
"nette/tester" : "^1.6.1",
"tracy/tracy" : "^2.3.0",
"mockery/mockery" : "~0.9",
"tharos/leanmapper": "~2.2.0"
}
}