-
Notifications
You must be signed in to change notification settings - Fork 248
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
Improve PHP version requirement to ^7.1 || ~8.0.0 || ~8.1.0 #301
Conversation
Added PHP 8.2.x to version range, since the unit tests are currently passing for it |
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.
Note: you may want to run composer update --lock
composer.json
Outdated
@@ -19,7 +19,7 @@ | |||
} | |||
], | |||
"require": { | |||
"php": ">=7.1", | |||
"php": "^7.1 || ~8.0.0 || ~8.1.0 || ~8.2.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.
Careful with 8.2.0
: I suggest holding off until it reaches RC, around october 2022.
Until then, any BC break is still possible.
Remember |
@florianeckerstorfer is this closed on purpose? |
This came up in the comments to a recently closed PR and I would appreciate your input on this.