-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
greater than (e.g. >=3.6) not supported #34
Comments
We so far did not implement these as their use is discouraged. |
Please consider it, I'm working on an open-source app that allows searching packagist for Symfony bundles that meet certain criteria (like at least php 8.2 and Symfony at least 6.4 or 7.0). I can assure you that LOTS of packages use this format, and even the composer docs talk about it.
|
I agree with you on the problems. In fact, many bundles are returned as being compatible with Symfony 7 because the constrait is ">= 2.2". Terrible. BUT many of the php constraints do work, even php >= 7.2 often works, where php ^7.2 fails with PHP 8, even if php 8 works. And getting authors of these old libraries to accept PRs is often difficult. |
I'm trying to parse the version string
on https://packagist.org/packages/antonchernik/logging-bundle,
The text was updated successfully, but these errors were encountered: