-
-
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
Provide ability to disable platform dependencies #9664
Comments
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. |
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. |
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 thecomposer update
has a specific PHP extension available and thus composer might resolve different package versions which require these extensions - but then the createdcomposer.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 requiresext-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 hasext-sodium
enabled, which will result inlcobucci/jwt
getting installed and locked into thecomposer.lock
- and your target environment does not actually have support forext-sodium
, you are currently left with the following options: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.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 haveext-sodium
enabled starting with PHP 8.0 for example - even thoughext-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
or something to that effect.
The text was updated successfully, but these errors were encountered: