Skip to content
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

Support wildcard in option ignore-platform-req #10045

Closed
dahaupt opened this issue Aug 10, 2021 · 10 comments
Closed

Support wildcard in option ignore-platform-req #10045

dahaupt opened this issue Aug 10, 2021 · 10 comments
Labels
Milestone

Comments

@dahaupt
Copy link

dahaupt commented Aug 10, 2021

When installing or updating packages, it would be useful if all platform requirements could be ignored, except for PHP.

Currently, this is only possible by ignoring each extension individually, e.g.:
composer update --ignore-platform-req=ext-json --ignore-platform-req=ext-xml

or by faking platform requirements in config.platform, e.g.:

"config": {
    "platform": {
        "ext-json": "7.4",
        "ext-xml": "7.4"
    }
},

We have this use case when updating composer projects with Renovate. See details in linked issue(s).

So the subject of this issue could also be:
Installing Composer dependencies in environments without valid platform requirements while respecting the PHP version requirement

Related:

@dereuromark
Copy link
Contributor

So basically you want

composer update --ignore-platform-req=ext-*

Seems reasonable to me, if this kind of wildcard syntax can be parsed into some PHP comparison checks etc.

@dahaupt
Copy link
Author

dahaupt commented Aug 10, 2021

@dereuromark Exactly!

Basically, we need --ignore-platform-reqs without ignoring the PHP version. But supporting wildcards would be useful enough and also helpful for other use cases, I think.

@dereuromark
Copy link
Contributor

dereuromark commented Aug 10, 2021

Maybe also the opposite could be useful then for your case, using - or ! prefix to invert?

composer update --ignore-platform-req=-php
composer update --ignore-platform-req=!php

Just spitballing some ideas here for the team to assess.

A comma separated list is already supported or not? To combine

composer update --ignore-platform-req=!php,ext-foo

@dahaupt
Copy link
Author

dahaupt commented Aug 10, 2021

@dereuromark My tests have shown that a comma separated list is not yet supported.

Correct me If I am wrong, but running

composer update --ignore-platform-req=!php

on its own would be useless, since all platform requirements are checked by default.

It would make sense, e.g. by running

composer update --ignore-platform-req=*,!php` 

or combined with --ignore-platform-reqs as

composer update --ignore-platform-reqs --ignore-platform-req=!php

@stof
Copy link
Contributor

stof commented Aug 11, 2021

a comma separated list is indeed not supported. To pass multiple values, you need to repeat the --ignore-platform-req=

@dereuromark
Copy link
Contributor

Sure, this was just spitballing some ideas. Would sure be trivial to add and quite useful over the repeating of such config.
I do that also on some configs to allow a list of params the easy way.

But I don't want to derail too much, the initial topic was still about wildcard support, not making multiple values easier.
I just thought they could be combined maybe.

@Seldaek
Copy link
Member

Seldaek commented Aug 19, 2021

It's technically feasible I suppose, to add wildcard support. I am not sure it's really worth it though.

If you are interested in sending a PR.. I think replacing the array|bool for $ignorePlatformReqs in Solver and AutoloadGenerator by a PlatformRequirementFilter object which would contain the list and patterns to ignore and then have methods to check if X is ignored, or if all is ignored (the current bool true case), would be the best approach. Otherwise it'll just add even more complexity in those places for a fringe feature.

@Seldaek Seldaek added this to the Nice To Have milestone Aug 19, 2021
@dahaupt
Copy link
Author

dahaupt commented Aug 19, 2021

@Seldaek Thanks for your feedback!

Our actual goal is to update packages, checking only the PHP version requirement. With a wildcard support, it would be possible, because we could directly exclude all extensions at once.

We would also appreciate any other solution supporting our use case, e.g.:

composer update --ignore-platform-reqs-except-php

would be a great alternative for us.

@Seldaek
Copy link
Member

Seldaek commented Aug 19, 2021

Yeah perhaps we could make it a special --ignore-platform-req=exts or something, but IMO the cleanup I mentioned above still makes sense regardless. And at that point supporting wildcard isn't adding much complexity anymore, and it's easier to grasp and more intuitive than a special value. I'd rather not add yet another flag for a very specific use case.

@herndlm
Copy link
Contributor

herndlm commented Aug 26, 2021

Oh, I have the exact same (Renovate) use-case and therefore a high personal interest in this feature. I will take a look at this until next week or so, I wanted to learn more about Composer internals anyways.

herndlm added a commit to herndlm/composer that referenced this issue Aug 26, 2021
Introduces a PlatformRequirementFilter with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
herndlm added a commit to herndlm/composer that referenced this issue Aug 26, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Aug 26, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Aug 26, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Aug 26, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Aug 26, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Aug 26, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Aug 26, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Aug 27, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
@Seldaek Seldaek modified the milestones: Nice To Have, 2.2 Aug 29, 2021
herndlm added a commit to herndlm/composer that referenced this issue Aug 29, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Aug 29, 2021
herndlm added a commit to herndlm/composer that referenced this issue Sep 5, 2021
herndlm added a commit to herndlm/composer that referenced this issue Sep 5, 2021
herndlm added a commit to herndlm/composer that referenced this issue Sep 5, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Sep 5, 2021
herndlm added a commit to herndlm/composer that referenced this issue Sep 29, 2021
herndlm added a commit to herndlm/composer that referenced this issue Oct 13, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Oct 13, 2021
herndlm added a commit to herndlm/composer that referenced this issue Oct 18, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Oct 19, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Nov 3, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Nov 3, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
herndlm added a commit to herndlm/composer that referenced this issue Nov 3, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour.
The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
Seldaek pushed a commit that referenced this issue Nov 11, 2021
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in #10045 but without changing behaviour.
herndlm added a commit to herndlm/composer that referenced this issue Nov 11, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants