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

Provide ability to disable platform dependencies #9664

Closed
fritzmg opened this issue Feb 2, 2021 · 3 comments · Fixed by #10308
Closed

Provide ability to disable platform dependencies #9664

fritzmg opened this issue Feb 2, 2021 · 3 comments · Fixed by #10308
Labels
Milestone

Comments

@fritzmg
Copy link

fritzmg commented Feb 2, 2021

Currently you can fake platform packages (PHP and extensions) so that you can emulate a production environment or define your target platform in the config. Example: {"php": "7.0.3", "ext-something": "4.0.3"}. However what you cannot do is defining that a specific PHP extension is not available in the target. This can be problematic if your local environment where you run the composer update has a specific PHP extension available and thus composer might resolve different package versions which require these extensions - but then the created composer.lock cannot actually be deployed in the target environment, because the PHP extension is missing of course.

This has become apparent recently with the release of lcobucci/jwt: 4.1.0 for example, which requires ext-sodium as a hard dependency. ext-sodium is particularly troublesome, because PHP needs to be compiled with --with-sodium for it to be available. Whether this is done or not depends on the target environment's ecosystem. So if your local development environment has ext-sodium enabled, which will result in lcobucci/jwt getting installed and locked into the composer.lock - and your target environment does not actually have support for ext-sodium, you are currently left with the following options:

  1. Disable ext-sodium locally. While this is easy enough under Windows (since it's just a DLL), it might not be so easy in Linux or MacOS, where you are relying on PHP being compiled by the maintainers of whatever package repository you are obtaining PHP from. In order to have full control, you would have to compile PHP yourself.
  2. Enable ext-sodium in the target. This might simply be out of your control and again also depends on the environment and where that environment obtains their PHP binaries from. Hosters like Alfahosting and HostEurope have confirmed that their PHP binary will have ext-sodium enabled starting with PHP 8.0 for example - even though ext-sodium is bundled within the PHP core since PHP 7.2.

For this particular instance it would be useful if you could explicitly exclude PHP extensions for dependency resolving. e.g. via

{
    "config": {
        "platform": {
            "ext-sodium": false
        }
    }
}

or something to that effect.

@fritzmg fritzmg changed the title Provide ability to disable platform Provide ability to disable platform dependencies Feb 2, 2021
@Seldaek Seldaek added the Feature label Feb 9, 2021
@Seldaek Seldaek added this to the 2.1 milestone Feb 9, 2021
@Seldaek
Copy link
Member

Seldaek commented Feb 9, 2021

Somewhat related to #7884 (which asks for this, and a way to assume all not-defined platform packages are missing, but that's a much more specific use case IMO).

@fritzmg
Copy link
Author

fritzmg commented Feb 11, 2021

Somewhat related to #7884 (which asks for this, and a way to assume all not-defined platform packages are missing, but that's a much more specific use case IMO).

Yeah, conceivably it should additionally be possible to only define the platform packages of the target system, i.e. completely overriding and explicitly telling composer, which platform packages should be taken into account, rather than taking them from the current environment.

Both (disabling a specific platform package and overriding all platform packages) sound like a valid use-case to me.

@Seldaek
Copy link
Member

Seldaek commented May 24, 2021

Note to self (or anyone working on this..): Supporting disabling should be easy to implement, but handling this gracefully in error output (Problem class) is probably trickier.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants