Addons Overview

Developers can easily build new features that are compatible with everyone’s Statamic installations. Addons can then be easily shared or sold to others to let them extend their Statamic installation.

Finding Addons

You can browse the Statamic Marketplace to find addons, or use the "Addons" section inside your Statamic Control Panel.

Installing Addons

You can use Composer to install any addon:

composer require vendor/package

The command can be found on the addon's page in the Control Panel or the Statamic Marketplace.

Hot Tip!

Some first party addons – such as the Static Site Generator or Eloquent Driver - have their own dedicated commands which will be noted on the same pages.

php please install:ssg

Creating Addons

To learn how to create your own addon, as well as publishing it to the Statamic Marketplace, head over to the Extending Statamic area.

Licensing

Addons may require a license, which you can purchase at the Marketplace. Licenses may be attached to a site in your account area. Make sure that you have your site key entered into your Statamic project.

You can try out commercial addons locally for free. Be sure to purchase a license before deploying to production.

Editions

An addon may have multiple editions, which may cost different amounts and provide different sets of features.

You can choose which edition is installed by entering it into your config/statamic/editions.php file:

'addons' => [
'vendor/package' => 'pro', // e.g., 'jezzdk/statamic-google-maps' => 'pro'
]

Or, by choosing it from an addon's details view in the Control Panel.

Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →