minor #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
This commit is contained in:
Fabien Potencier 2014-12-12 08:04:42 +01:00
commit bfdf04b9e9
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@
"monolog/monolog": "~1.3",
"propel/propel1": "~1.6",
"ircmaxell/password-compat": "~1.0",
"ocramius/proxy-manager": ">=0.3.1,<0.4-dev"
"ocramius/proxy-manager": "~0.3.1"
},
"autoload": {
"psr-0": { "Symfony\\": "src/" },

View File

@ -18,7 +18,7 @@
"require": {
"php": ">=5.3.3",
"symfony/dependency-injection": "~2.3",
"ocramius/proxy-manager": ">=0.3.1,<0.4-dev"
"ocramius/proxy-manager": "~0.3.1"
},
"require-dev": {
"symfony/config": "~2.3"