Initial: Webfarben DummyCopier Bundle

This commit is contained in:
2026-03-11 20:01:53 +01:00
commit 80fd71b922
12 changed files with 1071 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
declare(strict_types=1);
namespace Webfarben\DummyCopier\ContaoManager;
use Webfarben\DummyCopier\DummyCopierBundle;
use Contao\CoreBundle\ContaoCoreBundle;
use Contao\ManagerPlugin\Bundle\BundleConfig;
use Contao\ManagerPlugin\Bundle\Parser\ParserInterface;
use Contao\ManagerPlugin\Bundle\Plugin\BundlePluginInterface;
class Plugin implements BundlePluginInterface
{
public function getBundles(ParserInterface $parser): array
{
return [
BundleConfig::create(DummyCopierBundle::class)
->setLoadAfter([ContaoCoreBundle::class]),
];
}
}