-
Notifications
You must be signed in to change notification settings - Fork 79
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
Plugin Dependencies Support #407
Comments
Generally speaking, we need to test with the new plugin dependencies feature and see if and what to change. If the plugin‘s API provides this information easily, then I could see such a flag being useful for sure. |
I haven't looked at how WP Core does it, but it should probably be surfaced on the API already to render it on the wp-admin?plugins.php page |
Right. This is surfaced in the API via the So should be available for us too 👍 Edit: for already installed plugins we might be able to use the |
One use case I just stumbled upon: Provide an easy way to install all dependencies of a plugin. e.g. if I have plugin X installed (not necessarily activated) that depends on Y and Z, I want an easy way to install Y and Z, without having to activate X. |
--with-dependencies
or similar to plugin install
?
Listing dependencies in |
Feature Request
WordPress 6.5 adds the Plugin Dependencies capability. It would be useful if
plugin install
had a--with-dependencies
flag to also install the dependencies of the plugin being installed.The text was updated successfully, but these errors were encountered: