-
Notifications
You must be signed in to change notification settings - Fork 93
An attempt to make all tests green again so we can moving forward and merge PRs #313
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 all commits
4e45756
6a5eecd
fd12b55
74de953
0097b90
5eb76f6
5c7dd0a
4509bfe
9a680fc
5810d4b
08c0839
47e4d53
79f9668
a7440ab
a39ec1e
cefeade
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,18 +13,19 @@ | |
"php": "^5.5 || ^7.0", | ||
"symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0", | ||
"symfony/validator": "^2.7 || ^3.0 || ^4.0", | ||
"symfony/translation": "^2.7 || ^3.0 || ^4.0", | ||
"symfony/translation": "^2.7 || ^3.0 || ^4.0,<4.2", | ||
"symfony/twig-bundle": "^2.7 || ^3.0 || ^4.0", | ||
"symfony/finder": "^2.7 || ^3.0 || ^4.0", | ||
"symfony/intl": "^2.7 || ^3.0 || ^4.0", | ||
|
||
"php-translation/common": "^1.0", | ||
"php-translation/symfony-storage": "^1.0", | ||
"php-translation/extractor": "^1.3", | ||
"nyholm/nsa": "^1.1" | ||
"nyholm/nsa": "^1.1", | ||
"twig/twig": "<1.39 || ^2.0,<2.8" | ||
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 really bad idea. This is opting out from any maintenance efforts and preventing users to upgrade. 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. Agree, reverted in #324 - most probably tests will fail so we will need to fix them before merging |
||
}, | ||
"require-dev": { | ||
"symfony/phpunit-bridge": "^3.4 || ^4.0", | ||
"symfony/phpunit-bridge": "^3.4.19 || ^4.0", | ||
"php-translation/translator": "^1.0", | ||
"php-http/curl-client": "^1.7", | ||
"php-http/message": "^1.6", | ||
|
@@ -35,8 +36,8 @@ | |
"symfony/templating": "^2.7 || ^3.0 || ^4.0", | ||
"symfony/dependency-injection": "^2.7 || ^3.0 || ^4.0", | ||
"symfony/web-profiler-bundle": "^2.7 || ^3.0 || ^4.0", | ||
"matthiasnoback/symfony-dependency-injection-test": "^1.2 || ^2.3", | ||
"matthiasnoback/symfony-config-test": "^2.2 || ^3.1", | ||
"matthiasnoback/symfony-dependency-injection-test": "^1.2 || ^2.3 || ^3.0", | ||
"matthiasnoback/symfony-config-test": "^2.2 || ^3.1 || ^4.0", | ||
"guzzlehttp/psr7": "^1.4", | ||
"nyholm/symfony-bundle-test": "^1.2.3" | ||
}, | ||
|
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.
Terrible idea here. See #323
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.
I see your point, but at that time without a proper fix this was not so bad idea, it helped to push things forward in this bundle and merge many PRs awaiting green tests. Totally agree we should revert this change back, but also we should make tests green and properly fix the problem in this bundle on Sf 4.2+
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.
May be it's time to fix it? I think we have make tests green in #323 with help of @nicolas-grekas because it's apparently a BC break introduced with 4.2+ version of Symfony