How to Publish a SilverStripe module.
If you wish to submit your module to our public directory, you take responsibility for a certain level of code quality, adherence to conventions, writing documentation, and releasing updates.
SilverStripe uses Composer to manage module releases and dependencies between
modules. If you plan on releasing your module to the public, ensure that you provide a composer.json
file in the root
of your module containing the meta-data about your module.
For more information about what your composer.json
file should include, consult the
Composer Documentation.
A basic usage of a module for 3.1 that requires the CMS would look similar to this:
mycustommodule/composer.json
{
"name": "your-vendor-name/module-name",
"description": "One-liner describing your module",
"type": "silverstripe-module",
"homepage": "http://github.com/your-vendor-name/module-name",
"keywords": ["silverstripe", "some-tag", "some-other-tag"],
"license": "BSD-3-Clause",
"authors": [
{"name": "Your Name","email": "your@email.com"}
],
"support": {
"issues": "http://github.com/your-vendor-name/module-name/issues"
},
"require": {
"silverstripe/cms": "~3.1",
"silverstripe/framework": "~3.1"
},
"extra": {
"installer-name": "module-name",
"screenshots": [
"relative/path/screenshot1.png",
"http://myhost.com/screenshot2.png"
]
}
}
Once your module is published online with a service like Github.com or Bitbucket.com, submit the repository to Packagist to have the module accessible to developers. It'll automatically get picked up by addons.silverstripe.org website.
Releasing versions
Over time you may have to release new versions of your module to continue to work with newer versions of SilverStripe.
By using Composer, this is made easy for developers by allowing them to specify what version they want to use. Each
version of your module should be a separate branch in your version control and each branch should have a composer.json
file explicitly defining what versions of SilverStripe you support.
Say you have a module which supports SilverStripe 3.0. A new release of this module takes advantage of new features in SilverStripe 3.1. In this case, you would create a new branch for the 3.0 compatible code base of your module. This allows you to continue fixing bugs on this older release branch.
[info]
As a convention, the master
branch of your module should always work with the master
branch of SilverStripe.
[/info]
Other branches should be created on your module as needed if they're required to support specific SilverStripe releases.
You can have an overlap in supported versions, e.g two branches in your module both support SilverStripe 3.1. In this
case, you should explain the differences in your README.md
file.
Here's some common values for your require
section
(see getcomposer.org for details):
3.0.*
: Version3.0
, including3.0.1
,3.0.2
etc, excluding3.1
~3.0
: Version3.0
or higher, including3.0.1
and3.1
etc, excluding4.0
~3.0,<3.2
: Version3.0
or higher, up until3.2
, which is excluded~3.0,>3.0.4
: Version3.0
or higher, starting with3.0.4