Skip to content

Commit bfdf04b

Browse files
committed
minor symfony#12776 [2.3] Fixed the proxy-manager version constraint (GrahamCampbell)
This PR was merged into the 2.3 branch. Discussion ---------- [2.3] Fixed the proxy-manager version constraint | Q | A | ------------- | --- | Bug fix? | no | 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 `ocramius/proxy-manager` version constraint in the 2.3 branch. `"~0.3.1"` is far cleaner than `">=0.3.1,<0.4-dev"`, and does the same thing. Commits ------- ed6c50f Fixed the proxy-manager version constraint
2 parents c87a661 + ed6c50f commit bfdf04b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"monolog/monolog": "~1.3",
6868
"propel/propel1": "~1.6",
6969
"ircmaxell/password-compat": "~1.0",
70-
"ocramius/proxy-manager": ">=0.3.1,<0.4-dev"
70+
"ocramius/proxy-manager": "~0.3.1"
7171
},
7272
"autoload": {
7373
"psr-0": { "Symfony\\": "src/" },

src/Symfony/Bridge/ProxyManager/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": ">=5.3.3",
2020
"symfony/dependency-injection": "~2.3",
21-
"ocramius/proxy-manager": ">=0.3.1,<0.4-dev"
21+
"ocramius/proxy-manager": "~0.3.1"
2222
},
2323
"require-dev": {
2424
"symfony/config": "~2.3"

0 commit comments

Comments
 (0)