-
Notifications
You must be signed in to change notification settings - Fork 3
Use newest versions of PHPUnitBridge #12
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
Conversation
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.
Good catch. I didn't found how to reproduce the error.
@@ -26,7 +26,7 @@ | |||
"symfony/browser-kit": "^6.3 || ^7.0", | |||
"symfony/filesystem": "^6.3 || ^7.0", | |||
"symfony/framework-bundle": "^6.3.5 || ^7.0", | |||
"symfony/phpunit-bridge": "^6.3 || ^7.0", | |||
"symfony/phpunit-bridge": "~6.3.10 || ^6.4.1 || ^7.0.1", |
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.
Is there a specific reason to user ~
over ^
?
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.
We don't want 6.4.0 to be installed.
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.
From what I understand 6.4.0 can never be installed due to the second version definition ^6.4.1
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.
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 agree, but then the second kicks in, np?
It would be simpler to read like this:
^6.3.10 || ^7.0.1
adding a conflict for =6.4.0
* 0.1: Use newest versions of PHPUnitBridge (#12)
This fixes issues in CI that were first reported in symfony/symfony#52844. Sending this PR to 0.1 so we can continue to make fixes there.