diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-30 09:56:10 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-30 09:56:10 +0100 |
commit | a993ce03b16802e357281858bcdae7d1f1edf137 (patch) | |
tree | ab6dcf0fa0523d98d86f89fd7f0a8b5b52e76b9f /Acl | |
parent | e0355045aadb4ca821b86a54c3709502f528883d (diff) | |
parent | a600e5d951c969875af2810d208589dec3a1969e (diff) | |
download | symfony-security-a993ce03b16802e357281858bcdae7d1f1edf137.zip symfony-security-a993ce03b16802e357281858bcdae7d1f1edf137.tar.gz symfony-security-a993ce03b16802e357281858bcdae7d1f1edf137.tar.bz2 |
minor #13135 [2.7] Allow 3.0 requirements (nicolas-grekas)
This PR was merged into the 2.7 branch.
Discussion
----------
[2.7] Allow 3.0 requirements
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | lets see
| Fixed tickets | -
| License | MIT
| Doc PR | -
2.7 is going to provide almost the same interfaces as 3.0 but also a BC layer for previous releases.
This means that 2.7 is going to be mostly compatible with 3.0.
Lets continuously test this assumption and see when and were we break compat with 2.7 (and try to avoid it as much as possible to smoothen the transition to 3.0).
Commits
-------
b369bb6 [2.7] Allow 3.0 requirements
Diffstat (limited to 'Acl')
-rw-r--r-- | Acl/composer.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Acl/composer.json b/Acl/composer.json index 8f65f50..9eadd66 100644 --- a/Acl/composer.json +++ b/Acl/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": ">=5.3.3", - "symfony/security-core": "~2.4" + "symfony/security-core": "~2.4|~3.0.0" }, "require-dev": { "doctrine/common": "~2.2", |