-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.34 KB
/
composer.json
File metadata and controls
53 lines (53 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
52
53
{
"name": "symftony/form-handler",
"type": "library",
"description": "A Symfony form handler",
"keywords": [
"form",
"handler",
"symfony",
"bundle"
],
"homepage": "https://github.com/symftony/form-handler",
"require": {
"php": ">=8.1",
"symfony/form": "^6.1"
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"symfony/dependency-injection": "^6.1",
"symfony/config": "^6.1",
"symfony/http-kernel": "^6.1",
"symfony/serializer": "^6.1",
"phpspec/prophecy": "^1.0@dev",
"phpspec/prophecy-phpunit": "^2.1",
"symfony/translation": "^6.1",
"symfony/contracts": "^3.5@dev",
"symfony/validator": "^6.1"
},
"suggest": {
"symfony/dependency-injection": "^6.1",
"symfony/config": "^6.1",
"symfony/http-kernel": "^6.1",
"symfony/serializer": "^6.1",
"symfony/translation": "^6.1"
},
"license": "MIT",
"authors": [
{
"name": "Anthony",
"email": "symftony@gmail.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Symftony\\FormHandler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symftony\\FormHandler\\Tests\\": "tests/"
}
}
}