diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2013-11-09 13:05:18 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-11-09 13:05:18 +0100 |
commit | cd107f089dc31f7d47c77149d1de8baabaa668d8 (patch) | |
tree | 035b8f21a6f90838347ab664246f22ce4653b5c0 /Core | |
parent | 7c39ba38abcfbe4786d85be3b0695207bcac0c9d (diff) | |
parent | eeac1ab19ffa3e7de6ec255c57e3da45843f7326 (diff) | |
download | symfony-security-cd107f089dc31f7d47c77149d1de8baabaa668d8.zip symfony-security-cd107f089dc31f7d47c77149d1de8baabaa668d8.tar.gz symfony-security-cd107f089dc31f7d47c77149d1de8baabaa668d8.tar.bz2 |
minor #9427 adjust doctrine dependencies (Tobion)
This PR was merged into the master branch.
Discussion
----------
adjust doctrine dependencies
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | #9384, #9385
| License | MIT
| Doc PR | -
I went through all components/bundles/bridges in symfony and searched for doctrine dependencies. Then looked if it only requires a subset (annotations instead of common for example).
Commits
-------
7366901 adjust doctrine dependencies
Diffstat (limited to 'Core')
-rw-r--r-- | Core/composer.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Core/composer.json b/Core/composer.json index 4e7ff3a..7520be4 100644 --- a/Core/composer.json +++ b/Core/composer.json @@ -28,8 +28,9 @@ "suggest": { "symfony/event-dispatcher": "", "symfony/http-foundation": "", - "symfony/validator": "", - "ircmaxell/password-compat": "" + "symfony/validator": "For using the user password constraint", + "symfony/expression-language": "For using the expression voter", + "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5" }, "autoload": { "psr-0": { "Symfony\\Component\\Security\\Core\\": "" } |