-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Config] Delegate creation of ConfigCache instances to a factory. #14178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
02159ae
98aa48b
3744edf
282a75a
ae29b82
1730fc3
770ee09
2a058fd
8491dfd
beb307c
dbec920
5a91716
f2c3a24
35488bd
17a55ec
07ecf57
a89db7a
7938349
cb9917f
2016537
beb0a92
afee2bb
4832e1a
7f90bae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
…ake tests pass. See for example https://travis-ci.org/symfony/symfony/jobs/57160322 - wrong (too low) versions of symfony/config are installed.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ | |
"symfony/validator": "~2.5|~3.0.0", | ||
"symfony/yaml": "~2.0,>=2.0.5|~3.0.0", | ||
"symfony/expression-language": "~2.6|~3.0.0", | ||
"symfony/config": "~2.7|~3.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unsure about this as well. |
||
"doctrine/doctrine-bundle": "~1.2", | ||
"twig/twig": "~1.12", | ||
"ircmaxell/password-compat": "~1.0" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ | |
"symfony/routing": "~2.2|~3.0.0", | ||
"symfony/translation": "~2.0,>=2.0.5|~3.0.0", | ||
"symfony/validator": "~2.5,>=2.5.5|~3.0.0", | ||
"symfony/config": "~2.7|~3.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. instead, we should add a conflict rule for this: {
"...": "",
"conflict": {
"symfony/config": "<2.7"
}
} There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same in other occurences where you introduce a new config dependency There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am not sure whether I should add these at all. The Security component itself neither depends or conflicts with symfony/config. Its just that for some tests the Config component is installed as a transitive dependency (probably of symfony/http-kernel) and the version is too low. I am very unsure about this, but I suspect that once this PR has been merged into the 2.7 branch and the raised dependency for symfony/config ~2.7 in the HttpKernel component has been picked up, we can drop this altogether? Any advice appreciated. |
||
"doctrine/common": "~2.2", | ||
"doctrine/dbal": "~2.2", | ||
"psr/log": "~1.0", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fabpot is it right to add these? Otherwise a too low version of symfony/config is installed.