Download the PHP package afragen/add-plugin-dependency-api without Composer
On this page you can find all versions of the php package afragen/add-plugin-dependency-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download afragen/add-plugin-dependency-api
More information about afragen/add-plugin-dependency-api
Files in afragen/add-plugin-dependency-api
Package add-plugin-dependency-api
Short Description Library that helps WordPress plugin dependency management.
License MIT
Informations about the package add-plugin-dependency-api
Add Plugin Dependency API
- Contributors: Andy Fragen, contributors
- Tags: plugin dependency
- Requires at least: 6.0
- Requires PHP: 5.6
- Stable tag: main
- Donate link: https://thefragens.com/git-updater-donate
- License: MIT
Composer library for adding a plugin dependency response based upon use with Git Updater v12 or greater.
Description
This is an example to developers of non dot-org plugins that wish to take advantage of the Plugin Dependencies feature from the Requires Plugins
header.
You can use composer to install this package within your WordPress plugin / theme.
Please ensure you are using the latest version of this framework in your composer.json
-
Within your plugin or theme root folder, run the following command:
- Add a filter to your plugin that requires a dependency that returns an array or JSON response containing a REST endpoint that returns a valid
plugins_api()
response.
A query arg of the plugin slug, ?slug=my-plugin-dependency
, will be passed to the endpoint returned from the filter. The slug originates from the Require Plugins
header.
To see an example REST endpoint return view https://git-updater.com/wp-json/git-updater/v1/plugins-api/?slug=git-updater in the browser.
Development
PRs are welcome against the develop
branch.