-
Notifications
You must be signed in to change notification settings - Fork 407
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
Simplify PHP version constraint #587
Comments
Generally speaking, the I would recommend
This way we support PHP >= 7.4, but we prevent running on an hypothetical future PHP 9.0, as it would certainly require updates in Flight to work. |
I guess you're right, even if we guarantee that flight will always support latest and lts versions... for older versions it might break |
1 similar comment
I guess you're right, even if we guarantee that flight will always support latest and lts versions... for older versions it might break |
Although honestly, if I had php 9 and flight was already in version 6 for example...why would it cross my mind to download an old version? |
Reading the composer documentation and testing it with some tools, it turns out that the operator >= 7.4 It would be a simplified way to the PHP version constraints that currently exist both in composer.json, in the packagist info, and in the README badge
https://getcomposer.org/doc/articles/versions.md#version-range
Tool: https://semver.madewithlove.com/?package=php&constraint=%3E%3D7.4
The text was updated successfully, but these errors were encountered: