new: pkg: SWC-89 initialize the plugin for SW
This commit is contained in:
17
composer.json
Normal file
17
composer.json
Normal file
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
19
src/EtailWestTheme.php
Normal file
19
src/EtailWestTheme.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
namespace EtailWestTheme;
|
||||
|
||||
use Shopware\Core\Framework\Plugin;
|
||||
|
||||
/**
|
||||
* Class EtailWestTheme
|
||||
*
|
||||
* @package EtailWestTheme
|
||||
* @author Lang <https://www.splendidbear.org>
|
||||
* @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
|
||||
{
|
||||
}
|
||||
10
src/Resources/config/services.xml
Normal file
10
src/Resources/config/services.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" ?>
|
||||
|
||||
<container xmlns="http://symfony.com/schema/dic/services"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
|
||||
|
||||
<services>
|
||||
|
||||
</services>
|
||||
</container>
|
||||
Reference in New Issue
Block a user