{
"name": "foo/bar",
"description": "Demo-Plugin",
"type": "shopware-platform-plugin",
"autoload": {
"psr-4": {
"Foo\\Bar\\": "FooBar/"
}
},
"require": {
"dustin/shopware-utils": "~1.0"
},
"extra": {
"shopware-plugin-class": "Foo\\Bar\\FooBar",
"label": {
"de-DE": "Demo-Plugin",
"en-GB": "Demo plugin"
}
}
}<?php
namespace Foo\Bar;
use Dustin\ShopwareUtils\Core\Framework\Plugin;
class FooBar extends Plugin
{
}