Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d1478ed

Browse filesBrowse files
committed
don't allow to install the split Security packages
Currently, you would be able to install the Security component fromm Symfony 2.3 together with one of the split packages from a higher Symfony vesion like this: ```json { "require": { "symfony/symfony": "2.3.*", "symfony/security-core": "~2.7" } } ``` However, you will end up with classes being present twice. This must be reverted after merging up in the `2.7` branch.
1 parent ea10f24 commit d1478ed
Copy full SHA for d1478ed

File tree

2 files changed

+8
-0
lines changed
Filter options

2 files changed

+8
-0
lines changed

‎composer.json

Copy file name to clipboardExpand all lines: composer.json
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@
4848
"symfony/proxy-manager-bridge": "self.version",
4949
"symfony/routing": "self.version",
5050
"symfony/security": "self.version",
51+
"symfony/security-acl": "self.version",
5152
"symfony/security-bundle": "self.version",
53+
"symfony/security-core": "self.version",
54+
"symfony/security-http": "self.version"
5255
"symfony/serializer": "self.version",
5356
"symfony/stopwatch": "self.version",
5457
"symfony/swiftmailer-bridge": "self.version",

‎src/Symfony/Component/Security/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Security/composer.json
+5Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@
3232
"psr/log": "~1.0",
3333
"ircmaxell/password-compat": "~1.0"
3434
},
35+
"replace": {
36+
"symfony/security-acl": "self.version",
37+
"symfony/security-core": "self.version",
38+
"symfony/security-http": "self.version"
39+
},
3540
"suggest": {
3641
"symfony/class-loader": "",
3742
"symfony/finder": "",

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.