-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 2.23 KB
/
Copy pathcomposer.json
File metadata and controls
92 lines (92 loc) · 2.23 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "chamber-orchestra/form-bundle",
"type": "symfony-bundle",
"description": "Symfony 8 bundle for JSON-first API form handling with controller traits, data transformers, Doctrine validation, and RFC 9457 problem details error responses",
"keywords": [
"symfony",
"symfony-bundle",
"symfony8",
"form",
"form-handling",
"api",
"json",
"json-api",
"rest",
"rest-api",
"rfc9457",
"problem-details",
"validation",
"doctrine",
"data-transformer",
"error-handling",
"form-type",
"csrf"
],
"homepage": "https://github.com/chamber-orchestra/form-bundle",
"support": {
"issues": "https://github.com/chamber-orchestra/form-bundle/issues",
"source": "https://github.com/chamber-orchestra/form-bundle"
},
"license": "MIT",
"authors": [
{
"name": "Andrew Lukin",
"email": "lukin.andrej@gmail.com",
"homepage": "https://github.com/wtorsi",
"role": "Developer"
}
],
"require": {
"php": "^8.5",
"chamber-orchestra/view-bundle": "8.1.*",
"symfony/dependency-injection": "8.1.*",
"symfony/config": "8.1.*",
"symfony/framework-bundle": "8.1.*",
"symfony/runtime": "8.1.*",
"symfony/form": "8.1.*",
"symfony/validator": "8.1.*",
"symfony/translation": "8.1.*",
"symfony/clock": "8.1.*",
"doctrine/orm": "3.6.*"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"symfony/test-pack": "^1.2",
"doctrine/doctrine-bundle": "^3.2",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"friendsofphp/php-cs-fixer": "^3.94"
},
"autoload": {
"psr-4": {
"ChamberOrchestra\\FormBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "8.1.*"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"analyse": "vendor/bin/phpstan analyse",
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "vendor/bin/php-cs-fixer fix"
}
}