-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
Feature Request: Ignore only upper bound platform reqs #9534
Comments
If I may add, |
That honestly sounds like a rabbit hole I'd rather not go in. As for the other thing.. I'd maybe suggest |
Do you feel this is still useful/needed? I am thinking this was kind of a temporary growing pain during the initial PHP 8 rollout, which may happen again during PHP 9, but I'm not sure it needs a general solution. |
There are still packages out there that put an upper boundary on PHP (e.g. |
I agree with @derrabus. It's still useful. I just haven't found the time to properly look into this as this needs much more work than I initially expected. |
OK, I had a closer look at this, I think it may be doable if we do some internal refactoring.. Right now RuleSetGenerator handles the ignorePlatformReqs flags, by ignoring requirements on those packages which are ignored when loading package rules. This works well as ignoring just means skipping a Constraint entirely. Doing something like However if we changed things so that Package instances have a getOperator that would be used instead of a static '==' in Pool::match() (or perhaps ideally even a getConstraint method so fully ignored packages can return a MatchAllConstraint), then we could modify the ignored platform packages to return This is a bit involved though so pushing this back to 2.2 to be experimented with later. |
I argue against making this addition part of the codebase. Since wrong configurations, like the mentioned upper boundary for php versions in constraints, should be fixed in the packages. And since faking the php-version (or any extension for that matter) is already supported. Of course I can see that it will sometimes cause issues that you want to quickly (and temporarily!) resolve. |
@imme-emosol just to be clear, I'm not advocating people use this in their projects. This is more of a convenience feature for people who want to prepare their projects/libraries for future php versions without having to do |
This feature would mainly be useful for people who want to test their codebase on bleeding-edge PHP builds. And I would consider doing so a good practice because it allows early feedback to the PHP dev team. |
So, not changing the composer.json but changing the ${COMPOSER_HOME}/config.json in the CI-agent to fake the php-version will enable all of those issues without changes to composer's code, right? |
While adding an additional CI step As the change seems reasonably scoped (#10318) I think why not allow it.. |
not exactly, as using |
Introduce a new flag similar to
--ignore-platform-reqs
that only lifts upper bound requirements, while still observing lower bound requirements.I propose a new flag
--ignore-upper-bound-platform-reqs
(alternative suggestions welcome) which works similar to the existing--ignore-platform-reqs
, but only ignores higher platform versions, not lower ones. I would be happy to work on a PR for it.Additionally it might make sense for composer to ignore unrestricted platform versions that were unknown at the point of the release. For example phpunit/phpunit:4.8.18 (requiring
php: >=5.3.3
) should likely not be a viable candidate when runningcomposer require phpunit/phpunit
on the latest PHP nightly build.Background:
As discussed with @naderman and @derrabus recently, lifting upper bound platform requirements might lead to issues. Most likely the package was not tested against the newest, unstable version. This is less of an issue for packages that proactively test against newest snapshots and address issues early, but especially if package maintenance slows down this can later lead to issues.
Putting in the restriction afterwards will cause Composer to still pull in an earlier, still not working, version of the package instead. This is especially detrimental with packages that are updated less frequently and the issue might not be obvious if one does not rely on that package directly.
Example:
Package
foo
in 1.0 has the following platform requirement:php:>=7.4
.An issue is found with PHP 8.0 that can not be addressed directly and therefore the next (minor or patch) release of
foo
changes the requirement tophp:^7.4
to make sure it no longer proclaims to work with the untested, newer version of PHP.If I now run
composer require foo
in my project, where I use PHP 8.0, composer will still pickfoo:1.0
even though it is not "actually" supported.In order to make testing against newer versions easier while still making sure that platform requirements can be set to the actually supported versions a new option similar to
--ignore-platform-reqs
would be helpful.The text was updated successfully, but these errors were encountered: