-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (41 loc) · 964 Bytes
/
composer.json
File metadata and controls
46 lines (41 loc) · 964 Bytes
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": "juniwalk/form",
"description": "Nice to have tools for nette/form in nette framework.",
"type": "library",
"keywords": ["nette","nettefw","forms"],
"license": "MIT",
"authors": [{
"name": "Martin Procházka",
"email": "juniwalk@outlook.cz",
"role": "Developer"
}],
"autoload": {
"psr-4": {"JuniWalk\\Form\\": "src/"}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": ">=8.3",
"juniwalk/orm": "^2.0 | ^3.0",
"juniwalk/utils": "^4.0",
"nette/application": "^3.0",
"nette/di": "^3.0",
"nette/forms": "^3.0",
"nette/schema": "^1.3"
},
"require-dev": {
"contributte/translation": "^2.0",
"nette/tester": "^2.5",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-nette": "^2.0",
"staabm/phpstan-todo-by": "^0.3",
"tracy/tracy": "^2.10"
}
}