elefant/app-installer

App installer for Elefant CMS

Installs: 346

Dependents: 33

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:composer-installer

1.0 2012-10-27 18:23 UTC

This package is auto-updated.

Last update: 2024-03-25 06:12:29 UTC


README

This custom Composer installer will install apps into an Elefant CMS site's apps/ folder through Composer. It will trigger when a Composer package uses the elefant-app custom package type.

Usage

In order for an app to install using this installer, it needs a composer.json file with the following:

{
	"name": "elefant/app-$NAME$",
	"type": "elefant-app",
	"license": "MIT",
	"repositories": [
		{"type": "git", "url": "http://github.com/jbroadway/elefant_installer"}
	],
	"require": {
		"elefant/app-installer": "*"
	}
}

The type element will instruct Composer to use this custom installer.