This library is a starter template for creating a repository that automatically mirrors a private WordPress plugin and tags releases. That repository can then be used as a Composer VCS repository and the plugin can be required in your projects, just like you may already do with public plugins. See Roots's Bedrock for more information on Composer-managed WordPress.
Most existing solutions for using private plugins (without vendor Composer support) via Composer include configuring the package data directly in your WordPress install's composer.json
. See:
- https://roots.io/guides/acf-pro-as-a-composer-dependency-with-encrypted-license-key/
- https://github.com/PhilippBaschke/acf-pro-installer
The problem with these solutions is that they require defining the plugin version in your composer.json
's repositories
block. If a new release comes along, you have to bump this number manually. Fine for one site, but a massive pain for many. It also means ensuring correct env vars are set up anywhere you deploy or develop.
A good Composer setup should allow you to define a version contraint for the plugin and simply run composer update
to get the latest version compatible with your constraints.
This library allows you to do that.
This repository includes a GitHub action that, on a regular schedule, will:
- Fetch a plugin zip from a remote URL (see the next section for how authentication works)
- Read the plugin version from the zip
- Compare that to the latest tag
- If the version is the same, quits early
- Overwrites the repository's contents with the zip's contents
- Commits
- Tags
- Pushes
The included composer.json
then provides other necessary information to turn this repository into a valid Composer VCS repository.
This repository is just a starting point. You'll need to configure a few things to get your plugin working. This makes the repository very flexible.
Get started with the "Use This Template" button on this repository.
Many popular plugins have configurations ready to go in the .github/workflows/examples
directory. Copying a workflow out of here into update.yml
may be sufficient for your needs. Consult each file for important plugin-specific information.
You can download the latest version of most private plugins from a fixed URL, so long as you provide authentication of some kind. For example, Events Calendar Pro can be downloaded from:
https://pue.tri.be/api/plugins/v2/download?plugin=events-calendar-pro&key=${{your_tec_key}}
You shouldn't be committing any license keys or API keys to this repository. Instead, save any sensitive information needed to authenticate and download your plugin as GitHub Secrets.
Next, you need to update the GitHub action configuration in .github/workflows/update.yml
.
Find the "Fetch" step and update the URL with your plugin's endpoint, substituting in the secret you configured in the previous step for any sensitive information. For example, TEC Pro might end up looking like this:
# Fetch latest version
- name: Fetch
run: wget 'https://pue.tri.be/api/plugins/v2/download?plugin=events-calendar-pro&key=${{secrets.TEC_KEY}}' -O package.zip
Depending on the contents of the zip getting pulled down from the plugin's author, some moving around may be required. For example, if you download TEC Pro, the zip contains a directory that contains the plugin files. This is a common pattern, and the plugin files need to be moved up to the root directory.
That particular pattern is enabled by default - simply configure the plugin slug (which should correspond to the nested directory's name) in the env
section of the action:
env:
PACKAGE_SLUG: events-calendar-pro
If this behavior isn't desirable, comment out the "Move" step entirely. Tweak according to your own needs.
Finally, update the included composer.json
with an appropriate package name and, optionally, author credits. For example:
{
"name": "the-events-calendar/events-calendar-pro",
"type": "wordpress-plugin",
"authors": [
{
"name": "Ethan Clevenger",
"email": "[email protected]"
}
],
"require": {},
"require-dev": {
"tutv95/wp-package-parser": "^1.0"
}
}
The only parts you shouldn't change are the package type and the tutv95/wp-package-parser
dependency.
Commit and push to GitHub. You should now see a new "Actions" tab across the top of your repository. Click into it, find the "Updater" workflow, and run it (main branch, no yml
required). The action should pull and tag the latest available version of the plugin.
Confident that everything is in working order, you should now uncomment the schedule configuration of the on
section in update.yml
. By default, the package will auto-check for updates twice a day. Configure to your liking.
You can now require this library in your WordPress install. Add the GitHub repo to your composer.json
file as a VCS repository, and require the library according to how you named the package. Given the current example:
composer config repositories.events-calendar-pro vcs [email protected]:sterner-stuff/events-calendar-pro.git
composer require the-events-calendar/events-calendar-pro
The WordPress license, and how it impacts paid plugins, will probably always be a point of contention. Ignoring that, we believe that plugin authors that choose to charge for their work should get paid, considering the cost savings gained by using their work. Therefore, we strongly discourage using this workflow to:
- Make self-updating public mirrors of private WordPress plugins and themes
- Use a single plugin license across multiple sites when your license plan does not authorize doing so
- Otherwise violate the terms of use of your purchase
Please create a private repository for use according to the author's terms of use.
You may need to make tweaks to the updater workflow unique to the plugin you're trying to make work. Feel free to open a PR for more general improvements.
- Easy Digital Downloads: EDD seem to use some kind of nonce system to create download links, so there is no fixed download link for items sold via EDD to my knowledge. Happy to be proven wrong. Impacts FacetWP, for example.
See the wget
documentation for a variety of options that should allow you to authenticate in whatever way required. Tinker with the "Fetch" step in .github/workflows/update.yml
appropriately, and feel free to submit a PR with a new example workflow if you want to give back.
Yes, but you'll want to update composer.json
to be use the package type wordpress-theme
. The existing metadata parser should support WordPress themes.
This will require your own tinkering with the GitHub action to move directories and files around appropriately.
This starter template could probably be tweaked to act as a standalone GitHub Action, accepting args for the package name and full download URL. PRs welcome.
- Bedrock for an introduction to Composer-managed WordPress
- SatisPress, for using a WordPress install as a Composer repository and exposing its installed plugins/themes as packages
- Package Peak, a SaaS that provides all your Envato purchases as Composer-compatible packages