<?php declare(strict_types=1);namespace CityBanner;use Shopware\Core\Framework\Plugin;use Shopware\Storefront\Framework\ThemeInterface;use Carbon\Carbon;// expect the vendor folder on Shopware store releasesif (file_exists(dirname(__DIR__) . '/vendor/autoload.php')) { require_once dirname(__DIR__) . '/vendor/autoload.php';}class CityBanner extends Plugin{ public function executeComposerCommands(): bool { return true; } }