-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
46 lines (44 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
{
"name": "contributte/datagrid-skeleton",
"description": "Example of contributte/datagrid component. Project skeleton based on Nette Framework and Contributte libraries by @f3l1x & @paveljanda.",
"keywords": [
"php",
"nette",
"contributte",
"sandbox",
"project",
"skeleton",
"datagrid"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">= 8.2",
"contributte/nella": "^0.3",
"ublaboo/datagrid": "dev-master",
"dibi/dibi": "^5.0.1"
},
"require-dev": {
"contributte/qa": "^0.4.0",
"contributte/tester": "^0.1.0",
"phpstan/phpstan": "^1.9.14",
"phpstan/phpstan-dibi": "^1.0.1",
"phpstan/phpstan-nette": "^1.2.1",
"phpstan/phpstan-strict-rules": "^1.4.5",
"phpstan/phpstan-deprecation-rules": "^1.1.1"
},
"autoload": {
"psr-4": {
"App\\": [
"app/"
]
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}