forked from contributte/datagrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 1.78 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ublaboo/datagrid",
"type": "library",
"description": "DataGrid for Nette Framework: filtering, sorting, pagination, tree view, table view, translator, etc",
"keywords": [
"datagrid",
"grid",
"nette",
"contributte",
"table",
"data"
],
"license": [
"MIT"
],
"authors": [
{
"name": "Pavel Janda",
"homepage": "https://paveljanda.com"
},
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"autoload": {
"psr-4": {
"Contributte\\Datagrid\\": "src/"
},
"files": ["./compatibility.php"]
},
"autoload-dev": {
"psr-4": {
"Contributte\\Datagrid\\Tests\\": "tests"
}
},
"require": {
"php": ">=8.1",
"contributte/application": "^0.5.0",
"nette/di": "^3.0.0",
"nette/forms": "^3.1.3",
"nette/utils": "^3.0.1 || ^4.0.0",
"symfony/property-access": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"require-dev": {
"contributte/qa": "^0.3.0",
"dibi/dibi": "^3.0.0 || ^4.0.0 || ^5.0.0",
"doctrine/annotations": "^1.12.1",
"doctrine/cache": "^1.11.0",
"doctrine/orm": "^2.11.1",
"elasticsearch/elasticsearch": "^8.6",
"mockery/mockery": "^1.3.3",
"nette/database": "^3.0.2",
"nette/tester": "^2.3.4",
"nextras/dbal": "^4.0",
"nextras/orm": "^4.0",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-nette": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.4",
"tharos/leanmapper": "^3.4.2 || ^4.0.0",
"tracy/tracy": "^2.6.3"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
}
}