Skip to content

Commit 23173f1

Browse files
Merge pull request #8 from acseo/feature/symfony-5-compatibility
Allow Symfony 5 compatibility and split requirements to avoid require all symfony/symfony
2 parents 7e8783f + c43f0ae commit 23173f1

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

composer.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@
1212
],
1313
"require": {
1414
"php": ">=5.3.2",
15-
"symfony/symfony": "~3.1 || ~4.0"
16-
},
17-
"suggest": {
18-
15+
"symfony/config": "~3.1|^4.0|^5.0",
16+
"symfony/dependency-injection": "~3.1|^4.0|^5.0",
17+
"symfony/event-dispatcher": "~3.1|^4.0|^5.0",
18+
"symfony/form": "~3.1|^4.0|^5.0",
19+
"symfony/http-kernel": "~3.1|^4.0|^5.0",
20+
"symfony/options-resolver": "~3.1|^4.0|^5.0",
21+
"symfony/validator": "~3.1|^4.0|^5.0"
1922
},
2023
"autoload": {
2124
"psr-0": { "ACSEO\\Bundle\\DynamicFormBundle": "" }
@@ -24,7 +27,7 @@
2427
"minimum-stability": "dev",
2528
"extra": {
2629
"branch-alias": {
27-
"dev-master": "3.1-dev"
30+
"dev-master": "3.3-dev"
2831
}
2932
}
3033
}

0 commit comments

Comments
 (0)