forked from contributte/datagrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.03 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
{
"name": "czita/datagrid",
"type": "library",
"description": "DataGrid for Nette Framework: filtering, sorting, pagination, tree view, table view, translator, etc",
"keywords": ["datagrid", "grid", "nette"],
"license": ["MIT"],
"authors": [
{
"name": "Pavel Janda",
"homepage": "http://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Ublaboo\\DataGrid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ublaboo\\DataGrid\\Tests\\": "tests"
}
},
"require": {
"php": "^5.6|^7.0",
"nette/application": "^2.4.0",
"nette/utils": "^2.4.0",
"nette/forms": "^2.3.0",
"ublaboo/responses": "~1.0.0 || ~2.0.0",
"symfony/property-access": "^3.0.0 || ^4.0.0"
},
"require-dev": {
"nette/tester": "^1.6.1",
"tracy/tracy": "^2.3.0",
"mockery/mockery": "~0.9",
"tharos/leanmapper": "~2.2.0",
"nextras/orm": "~2.3.0",
"doctrine/orm": "~2.5",
"nette/database": "^2.3",
"dibi/dibi": "^3.0"
},
"extra": {
"branch-alias": {
"dev-v5.x": "5.8.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}