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