-
-
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
Composer does not respect plugin files autoload requirements #10024
Comments
This happens due to the fact that I don't think this can be changed easily, if at all, because this API (which is likely also to be used for custom plugin commands) is meant to be used multiple times within one process and obviously include files can only be included once (at least it isn't documented, that these files must guard for second inclusion). Pretty sure, that any change in this area will be breaking. |
Can't using require_once fix the issue? |
Fix which issue in what case? Considering that Composer plugin packages can be upgraded and are both executed before and after an upgrade, I doubt that a require_once at any point in such process will help to reliably resolve such issues. |
One practical example:
The plugin system in Composer has improved in Composer 2, so not sure if everything still applies, but the outlines should still be the same. The plugin system already is (because of what it needs to achieve) pretty fragile already. I don't think it will help to add some global state to it. |
@helhum as I said in the issue I can see why it was done this way. Likewise I traced the problem to Even if this cannot be fixed the visibility needs to be improved. |
Yeah probably should be better documented, but indeed what you figured out above is correct, it's by design and I'm not so keen on changing it. files autoloading was seen as more of a hack initially.. It has since seen more regular usage with some packages providing functions, but it is still quite a problematic autoload method as it is not symbol based like classes. Maybe one day we get proper function autoloading in php 🤞🏻 If someone feels like sending a PR clarifying the plugin docs and/or the docblock on createLoader, those would both be welcome improvements. |
Right now plugins cannot safely depend on any packages that use
Right now ignoring the I cannot even figure out a nice workaround for this inside a plugin, unless I'm missing something it doesn't appear possible for a plugin to get it's own |
I bumped into this today when I As much as part of me wishes it "just worked", I understand the reasoning behind not wanting to load arbitrary PHP files this way. While @cs278 makes a good point - there's nothing stopping a class file polluting global scope - at least they can be autoloaded on demand using real PHP autoloaders, and not just Another workaround I considered trying was dumping the autoloader and manually loading it during the activation of the plugin ( |
See #10065 |
The newest versions of Symfony HTTP client use PHP 8 functions and require PHP 8 polyfill which does not work in context of Composer plugin. :( symfony/symfony#42280 composer/composer#10024
…s (xabbuh) This PR was merged into the 5.4 branch. Discussion ---------- [Yaml] revert using functions provided by polyfill packages | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix #43943 | License | MIT | Doc PR | This reverts #41431 for the same reason for which we merged #42296 (see #42280 and composer/composer#10024 for more information). Commits ------- 3b9b700 revert using functions provided by polyfill packages
Fixed by #10065 |
Composer does not appear to load the
files
section of theautoload
definition for plugins. This appears to hold true for the plugin itself and any dependencies, I expect this might be a design decision but I cannot see it documented anywhere. I've stumbled upon this while investigating a problem with the new releases ofsymfony/yaml
package using PHP 8 functions breaking plugins on PHP 7.4 which led me to symfony/symfony#42280. I've put together a test plugin to demonstrate the problem.My
composer.json
:Output of
composer diagnose
:When I run this command:
I get the following output:
And I expected this to happen:
The text was updated successfully, but these errors were encountered: