-
Notifications
You must be signed in to change notification settings - Fork 30
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
[WIP] Add support Symfony 7 Update composer.json #25
Conversation
Waiting for release of Behat/Behat#1442 |
composer.json
Outdated
@@ -22,9 +22,9 @@ | |||
], | |||
"require": { | |||
"php": ">=7.4", | |||
"behat/behat": "^3.0.5", | |||
"behat/behat": "dev-master", |
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.
The proper way to handle that is not to change the requirement but to use minimum-stability: dev
in the symfony 7.0 job for now (this way, you won't loose the requirement for other versions).
And it would even make this PR mergeable (the release of the new version of this extension might still need to wait for the Behat release but not the merge), making it easier to validate that the extension actually works fine (by attempting to upgrade some projects to use dev versions of packages)
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.
Yes, this is for testing - we are waiting release Behat new version supports Symfony 7.0
No description provided.