-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.34 KB
/
Copy pathcomposer.json
File metadata and controls
51 lines (51 loc) · 1.34 KB
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
{
"name": "vincent4vx/form",
"description": "Simple form system with fast validation and object hydration",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vincent Quatrevieux",
"email": "quatrevieux.vincent@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Quatrevieux\\Form\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Quatrevieux\\Form\\": "tests/",
"Bench\\": "bench/"
},
"classmap": ["tests/Fixtures"]
},
"require": {
"php": "~8.1",
"nette/php-generator": "~4.0",
"psr/container": "~1.1|~2.0",
"symfony/translation-contracts": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "~9.5",
"phpbench/phpbench": "^1.2",
"symfony/form": "^6.1",
"symfony/validator": "^6.1",
"phpstan/phpstan": "^1.9",
"friendsofphp/php-cs-fixer": "^3.13",
"ramsey/uuid": "^4.7",
"symfony/security-csrf": "^6.2",
"psr/http-message": "^2.0"
},
"suggest": {
"symfony/security-csrf": "For use Csrf component",
"psr/http-message": "For use UploadedFile constraint"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}