2017 © Pedro Peláez
 

composer-plugin installer

EC-CUBE Plugin Installer for Composer.

image

ec-cube-plugin/installer

EC-CUBE Plugin Installer for Composer.

  • Wednesday, April 20, 2016
  • by ttsuru
  • Repository
  • 0 Watchers
  • 1 Stars
  • 117 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 10 Versions
  • 0 % Grown

The README.md

EC-CUBE2 Installer for Composer

EC-CUBE2 の Plugin / Module / Template を Composer で管理できるようになります。, (*1)

EC-CUBE2への実際のインストールなどは分離しました。ec-cube2/cli を利用してください。, (*2)

Installation / Usage

1. コマンドを実行してください。

例) ExamplePlugin ( ec-cube2-plugin/example_plugin ) をインストールする場合, (*3)

以下のようにコマンドを実行してください。
もちろん、プラグインのバージョン指定も可能です。, (*4)

$ composer require ec-cube2-plugin/example_plugin

もちろん、通常のComposerと同様にGitHubなどの外部リポジトリをそのまま指定することも可能です。
Composer のドキュメントを参照してください。, (*5)

{
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/ec-cube2-plugin/example_plugin"
        }
    ],
    "require": {
        "ec-cube2-plugin/example_plugin": "dev-master"
    }
}

インストールしたいパスを変更したい場合, (*6)

{
    "extra": {
        "installer-paths": {
            "data/downloads/plugin/{$name}/": ["type:eccube2-plugin"],
            "data/downloads/module/{$name}/": ["type:eccube2-module"],
            "data/Smarty/templates/{$name}/": ["type:eccube2-template"]
        }
    }
}

2. Composer を実行してください。

$ composer install --no-dev

3. これで終了。

これだけです。, (*7)

composer.json

プラグイン

以下のように準備してください。 Packagist に登録する場合、 ec-cube2-plugin 部分はあなた専用の Namespace を指定する必要があります。
example_plugin 部分は小文字で指定する必要があります。インストール時に ExamplePlugin のように CamelCase に変換されます。, (*8)

{
    "name": "ec-cube2-plugin/example_plugin",
    "description": "サンプルプラグイン",
    "type": "eccube2-plugin",
    "license": "LGPL",
    "homepage": "http://www.example.com/",
    "require": {
        "ec-cube2/plugin-installer": "^1.0"
    }
}

モジュール

以下のように準備してください。 Packagist に登録する場合、 ec-cube2-module 部分はあなた専用の Namespace を指定する必要があります。
mdl_example 部分が、モジュールの code になります。他のモジュールと重複しない必要があります。, (*9)

※オーナーズストア経由で導入したモジュールと同一もモジュールをインストールすると動作に影響する可能性があります。, (*10)

{
    "name": "ec-cube2-module/mdl_example",
    "description": "サンプルモジュール",
    "type": "eccube2-module",
    "license": "LGPL",
    "homepage": "http://www.example.com/",
    "require": {
        "ec-cube2/plugin-installer": "^1.0"
    }
}

テンプレート

以下のように準備してください。 Packagist に登録する場合、 ec-cube-plugin 部分はあなた専用の Namespace を指定する必要があります。
sample 部分が、テンプレートの code になります。他のテンプレートと重複しない必要があります。, (*11)

{
    "name": "ec-cube2-template/sample",
    "description": "サンプルテンプレート",
    "type": "eccube2-template",
    "license": "LGPL",
    "homepage": "http://www.example.com/",
    "require": {
        "ec-cube2/plugin-installer": "^1.0"
    }
}

Requirements

PHP 5.3.3 以上, (*12)

The Versions

20/04 2016

2.13.x-dev

2.13.9999999.9999999-dev

EC-CUBE Plugin Installer for Composer.

  Sources   Download

LGPL-3.0

The Requires

  • composer-plugin-api ^1.0

 

The Development Requires

by Tsuyoshi Tsurushima

20/04 2016

2.13.7

2.13.7.0

EC-CUBE Plugin Installer for Composer.

  Sources   Download

LGPL-3.0

The Requires

  • composer-plugin-api ^1.0

 

The Development Requires

by Tsuyoshi Tsurushima

31/03 2016

2.13.6

2.13.6.0

EC-CUBE Plugin Installer for Composer.

  Sources   Download

LGPL-3.0

The Requires

  • composer-plugin-api ^1.0

 

The Development Requires

by Tsuyoshi Tsurushima

29/08 2015

2.13.5

2.13.5.0

EC-CUBE Plugin Installer for Composer.

  Sources   Download

LGPL-3.0

The Requires

  • composer-plugin-api 1.0.0

 

The Development Requires

by Tsuyoshi Tsurushima

22/08 2015

2.13.4

2.13.4.0

EC-CUBE Plugin Installer for Composer.

  Sources   Download

LGPL-3.0

The Requires

  • composer-plugin-api 1.0.0

 

The Development Requires

by Tsuyoshi Tsurushima

12/08 2015

2.13.3

2.13.3.0

EC-CUBE Plugin Installer for Composer.

  Sources   Download

LGPL-3.0

The Requires

  • composer-plugin-api 1.0.0

 

The Development Requires

by Tsuyoshi Tsurushima

12/08 2015

2.13.2

2.13.2.0

EC-CUBE Plugin Installer for Composer.

  Sources   Download

LGPL-3.0

The Requires

  • composer-plugin-api 1.0.0

 

The Development Requires

by Tsuyoshi Tsurushima

12/08 2015

2.13.1

2.13.1.0

EC-CUBE plugin installer.

  Sources   Download

MIT

The Requires

  • composer-plugin-api 1.0.0

 

The Development Requires

by Tsuyoshi Tsurushima

12/08 2015

2.13.0

2.13.0.0

EC-CUBE 2.13 plugin installer.

  Sources   Download

MIT

The Requires

  • composer-plugin-api 1.0.0

 

The Development Requires

by Tsuyoshi Tsurushima

10/08 2015

dev-master

9999999-dev

EC-CUBE 3.0 plugin installer.

  Sources   Download

MIT

The Requires

  • composer-plugin-api 1.0.0

 

by Tsuyoshi Tsurushima