-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
54 lines (54 loc) · 1.56 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
47
48
49
50
51
52
53
54
{
"name": "qossmic/rich-model-forms-bundle",
"description": "Provides additional data mapper options that ease the use of the Symfony Form component with rich models.",
"keywords": ["Symfony", "form", "forms", "bundle", "rich model", "DDD", "domain-driven design"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Christian Flothmann",
"email": "[email protected]"
},
{
"name": "Christopher Hertel",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"psr/container": "^1.0||^2.0",
"symfony/config": "^6.4||^7.0",
"symfony/dependency-injection": "^6.4||^7.0",
"symfony/form": "^6.4||^7.0",
"symfony/framework-bundle": "^6.4||^7.0",
"symfony/http-kernel": "^6.4||^7.0",
"symfony/options-resolver": "^6.4||^7.0",
"symfony/property-access": "^6.4||^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4||^7.0",
"symfony/translation": "^6.4||^7.0"
},
"conflict": {
"sensiolabs-de/rich-model-forms-bundle": "0.8.*"
},
"minimum-stability": "dev",
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Qossmic\\RichModelForms\\": "src/Qossmic"
}
},
"autoload-dev": {
"psr-4": {
"Qossmic\\RichModelForms\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.3-dev"
}
}
}