Skip to content

Commit 9e0dff5

Browse files
committed
minor symfony#12781 Fixed the symfony/config version constraint (GrahamCampbell)
This PR was merged into the 2.3 branch. Discussion ---------- Fixed the symfony/config version constraint | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | N/A | License | MIT | Doc PR | N/A ##### This pull request fixes the `symfony/config` version constraint in the proxy manager bridge. Before this pull, composer was only allowing `v2.3.0` to be downloaded. This surely was not the intention. I've updated the version constraint from `"2.3"` to `"~2.3"` thus allowing all 2.x versions that are equal to or greater than `v2.3.0`. Commits ------- ec14f0f Fixed the symfony/config version constraint
2 parents c68ff54 + ec14f0f commit 9e0dff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/ProxyManager/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"ocramius/proxy-manager": ">=0.3.1,<0.4-dev"
2222
},
2323
"require-dev": {
24-
"symfony/config": "2.3"
24+
"symfony/config": "~2.3"
2525
},
2626
"autoload": {
2727
"psr-0": {

0 commit comments

Comments
 (0)