From 6b1afe4bfe2c2b0e7401358ef5e112286f440008 Mon Sep 17 00:00:00 2001 From: Lang <7system7@gmail.com> Date: Wed, 15 Feb 2023 13:28:25 +0100 Subject: [PATCH] new: pkg: SWC-89 initialize the plugin for SW --- composer.json | 17 +++++++++++++++++ src/EtailWestTheme.php | 19 +++++++++++++++++++ src/Resources/config/services.xml | 10 ++++++++++ 3 files changed, 46 insertions(+) create mode 100644 composer.json create mode 100644 src/EtailWestTheme.php create mode 100644 src/Resources/config/services.xml diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..725ae11 --- /dev/null +++ b/composer.json @@ -0,0 +1,17 @@ +{ + "name": "itg-theme/etail-west-plugin", + "description": "eTail West theme plugin for presentation", + "type": "shopware-platform-plugin", + "license": "MIT", + "autoload": { + "psr-4": { + "EtailWestTheme\\": "src/" + } + }, + "extra": { + "shopware-plugin-class": "EtailWestTheme\\EtailWestTheme", + "label": { + "en-GB": "eTail West theme plugin for presentation" + } + } +} diff --git a/src/EtailWestTheme.php b/src/EtailWestTheme.php new file mode 100644 index 0000000..1fe2de5 --- /dev/null +++ b/src/EtailWestTheme.php @@ -0,0 +1,19 @@ + + * @category Class + * @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License + * @link www.splendidbear.org + * @since 2023. 02. 15. + */ +class EtailWestTheme extends Plugin +{ +} diff --git a/src/Resources/config/services.xml b/src/Resources/config/services.xml new file mode 100644 index 0000000..b0a1dc7 --- /dev/null +++ b/src/Resources/config/services.xml @@ -0,0 +1,10 @@ + + + + + + + + \ No newline at end of file