Crafter Marketplace
The Crafter Marketplace provides a home for the CrafterCMS community to contribute, find, and use extensions.
CrafterCMS extensions
extend the CMS and provide the user additional functionality.
This section provides information on creating and how to submit your extensions so that it’s available to the community via the Marketplace
Create Extensions for the Crafter Marketplace
Types of extensions
blueprint
: This type of extension (blueprint) can be used as a template to create projects, it includes support for parameters to allow dynamic sites that use API keys or passwords for external services. For more information about creating blueprints you can follow this guide: Blueprints.plugin
: This type of extension can be used to add features to existing projects, it can include authoring and delivery extensions. For more information about creating plugins you can follow this guide: How Do I Make My Own Plugin?
Submit an extension
Note
At this moment there is only one method for submitting plugins, but others will be added in the future
GitHub App
The Crafter Marketplace provides a very simple way of publishing plugins from a GitHub repository, once your extension is ready to be submitted you can follow these steps:
Install the Crafter Marketplace GitHub App in your repository:
Open a browser and go to https://github.com/marketplace/crafter-marketplace
Click the
Install it for free
buttonClick the
Complete order and begin installation
buttonSelect the repositories for your plugins and click the
Install
buttonFrom your account settings you can:
Add or remove repositories from the application
Uninstall the application from your account
Create a tag in your repository for the version of the plugin that you will submit:
git tag v1.0.0
Push the tag to GitHub:
git push --tags
- The Crafter Marketplace will automatically detect the new tag in your repository and will start processing
a new version for your extension (or a new extension if it doesn’t exit yet)
You will receive an email notification to the address configured in your GitHub account.
Warning
Make sure to always change the plugin version in the craftercms-plugin.yaml
the next time you create a tag or
the submit process will fail
Also remember to set your GitHub repository to public so Crafter can pull from the repository. If you’re interested in private extensions/Marketplace, you’ll need to switch to the Enterprise Edition of CrafterCMS.
For more information on the Crafter Marketplace, see https://craftercms.com/marketplace/
For more information on developing extensions for the Marketplace, see here