forked from contributte/datagrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.07 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
{
"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": {
"php": "^7.1",
"nette/application": "^3.0",
"nette/utils": "^3.0",
"nette/forms": "^3.0",
"ublaboo/responses": "^2.0",
"symfony/property-access": "^3.0"
},
"require-dev": {
"nette/tester": "^1.6.1",
"tracy/tracy": "^2.3",
"mockery/mockery": "~0.9",
"tharos/leanmapper": "^2.2",
"doctrine/orm": "^2.5",
"nette/database": "^3.0",
"dibi/dibi": "^3.0"
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
}
}