-
Notifications
You must be signed in to change notification settings - Fork 104
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
Set php 8.3 as min #810
Set php 8.3 as min #810
Conversation
Quality Gate passedIssues Measures |
@@ -12,20 +12,20 @@ | |||
"prefer-stable": true, | |||
"minimum-stability": "dev", | |||
"require": { | |||
"php": "~8.1.0 || ~8.2.0 || ~8.3.0", | |||
"php": "~8.3.0 || ~8.4.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.
according our meeting in the morning this line should be removed completely right?
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.
Please see: pimcore/generic-data-index-bundle#276 (comment)
It is better to always explicitly define the dependencies of a package instead of relying on the definition of another package. This is especially true for the PHP version, as you can no longer change it once a package version has been released.
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.
@alexz707 Yes, according to the meeting this should be removed. I figure out the that most of the test depends on this(see workflows). So we can refactor the test or keep this. We will talk tomorrow in the meeting :-)
No description provided.