Skip to content

Commit ffd9ae0

Browse files
committed
minor #22885 [3.4] Allow 4.* deps (nicolas-grekas)
This PR was merged into the 3.4 branch. Discussion ---------- [3.4] Allow 4.* deps | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #22756 | License | MIT | Doc PR | - This is implementing option 3 as described in #22756. See #22769 for corresponding PR on 2.8: everything goes well and this allows catching a few more potential mistakes. Commits ------- c3e1646af8 [3.4] Allow 4.* deps
2 parents f3af6eb + 31b53ca commit ffd9ae0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
"php": ">=5.5.9"
2020
},
2121
"require-dev": {
22-
"symfony/config": "~2.8|~3.0|~4.0.0",
23-
"symfony/http-foundation": "~2.8|~3.0|~4.0.0",
24-
"symfony/yaml": "~3.3|~4.0.0",
25-
"symfony/expression-language": "~2.8|~3.0|~4.0.0",
26-
"symfony/dependency-injection": "~3.3|~4.0.0",
22+
"symfony/config": "~2.8|~3.0|~4.0",
23+
"symfony/http-foundation": "~2.8|~3.0|~4.0",
24+
"symfony/yaml": "~3.3|~4.0",
25+
"symfony/expression-language": "~2.8|~3.0|~4.0",
26+
"symfony/dependency-injection": "~3.3|~4.0",
2727
"doctrine/annotations": "~1.0",
2828
"doctrine/common": "~2.2",
2929
"psr/log": "~1.0"

0 commit comments

Comments
 (0)