thelia/installer

custom installer for Thelia.

Installs: 79 528

Dependents: 300

Suggesters: 0

Security: 0

Stars: 1

Watchers: 4

Forks: 1

Open Issues: 0

Type:composer-plugin

1.3 2020-10-26 10:32 UTC

This package is auto-updated.

Last update: 2024-04-26 18:06:33 UTC


README

This installer allows you to install module and templates using composer. We created special type for Thelia

You can now create module and submit them on packagist.org

List of special types :

  • thelia-module => install your module in local/module
  • thelia-frontoffice-template => install your template in templates/frontOffice
  • thelia-backoffice-template => install your template in templates/backOffice
  • thelia-email-template => install your template in templates/email
  • thelia-pdf-template => install your template in templates/pdf

Example composer.json file

{
    "name": "thelia/hooktest-module",
    "type": "thelia-module",
    "require": {
        "thelia/installer": "~1.0"
    }
}

This would install your module in local/modules/hookstest-module

You certainly notice that hooktest-module is not a valid name for a Thelia module. In fact packagist.org doesn't allow package in uppercase. For fixing this, you must use an extra param in your composer.json

{
    "name": "thelia/hooktest-module",
    "type": "thelia-module",
    "require": {
        "thelia/installer": "~1.0"
    },
    "extra": {
        "installer-name": "HookTest"
    }
}

With this new section, your module will be install now in local/modules/HookTest