elefant / theme-installer
Theme installer for Elefant CMS
Installs: 148
Dependents: 10
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:composer-installer
This package is auto-updated.
Last update: 2024-10-25 07:04:59 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.