yireo/magento1-xmllayouthints

在前端显示XML布局名称

dev-master 2017-08-17 13:57 UTC

This package is auto-updated.

Last update: 2024-08-29 04:48:14 UTC


README

安装

您可以通过多种方式安装此模块

  1. 从我们的网站下载MagentoConnect包,并将其上传到您自己的Magento下载器应用程序中。

  2. 从我们的网站下载Magento源代码存档,解压缩文件,并将文件上传到您的Magento根目录。请确保刷新Magento缓存。完成后请确保注销。

  3. 使用modman为您安装git存储库

    modman init modman clone https://github.com/yireo/Yireo_XmlLayoutHints modman update Yireo_XmlLayoutHints

  4. 使用composer。见下文。

使用composer的说明

使用composer安装此扩展。首先请确保使用正确的设置初始化composer

composer -n init
composer install --no-dev

接下来,修改您的本地composer.json文件

{
    "require": {
        "yireo/magento1-xmllayouthints": "dev-master",
        "magento-hackathon/magento-composer-installer": "*"
    },    
    "repositories":[
        {
            "type":"composer",
            "url":"https://packages.firegento.com"
        },
        {
            "type":"composer",
            "url":"https://satis.yireo.com"
        }
    ],
    "extra":{
        "magento-root-dir":"/path/to/magento",
        "magento-deploystrategy":"copy"           
    }
}

请确保正确设置magento-root-dir。通过运行测试

composer update --no-dev

完成。