定制 thelia/installer 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

thelia/installer

最新稳定版本:1.5

Composer 安装命令:

composer require thelia/installer

包简介

custom installer for Thelia.

README 文档

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

统计信息

  • 总下载量: 92.3k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 318
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: LGPL-3.0-or-later
  • 更新时间: 2014-09-01