elefant / theme-installer
Theme installer for Elefant CMS
Installs: 152
Dependents: 10
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:composer-installer
pkg:composer/elefant/theme-installer
This package is auto-updated.
Last update: 2025-10-25 09:11:54 UTC
README
This custom Composer installer will install themes
into an Elefant CMS site's layouts/ folder through Composer. It will trigger
when a Composer package uses the elefant-theme custom package type.
Usage
In order for a theme to install using this installer, it needs a composer.json
file with the following:
{
"name": "elefant/theme-$NAME$",
"type": "elefant-theme",
"license": "MIT",
"repositories": [
{"type": "git", "url": "http://github.com/jbroadway/theme_installer"}
],
"require": {
"elefant/theme-installer": "*"
}
}
The type element will instruct Composer to use this custom installer.