forked from qossmic/rich-model-forms-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.7 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
55
56
57
{
"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": "christian.flothmann@qossmic.com"
},
{
"name": "Christopher Hertel",
"email": "mail@christopher-hertel.de"
}
],
"require": {
"php": "^7.1.3||^8.0",
"psr/container": "^1.0",
"symfony/config": "^4.4||^5.0",
"symfony/dependency-injection": "^4.4||^5.0",
"symfony/form": "^4.4||^5.0",
"symfony/framework-bundle": "^4.4||^5.0",
"symfony/http-kernel": "^4.4||^5.0",
"symfony/deprecation-contracts": "^2.1",
"symfony/options-resolver": "^4.4||^5.0",
"symfony/property-access": "^4.4||^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.4",
"symfony/phpunit-bridge": "^4.4.12||^5.2",
"symfony/translation": "^4.4||^5.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.1-dev"
}
}
}