<?php declare(strict_types=1); /* * This file is part of Oveleon ContaoMemberExtension Bundle. * * @package contao-member-extension-bundle * @license MIT * @author Daniele Sciannimanica <https://github.com/doishub> * @author Fabian Ekert <https://github.com/eki89> * @author Sebastian Zoglowek <https://github.com/zoglo> * @copyright Oveleon <https://www.oveleon.de/> */ namespace Oveleon\ContaoMemberExtensionBundle\ContaoManager; use Contao\CoreBundle\ContaoCoreBundle; use Contao\ManagerPlugin\Bundle\BundlePluginInterface; use Contao\ManagerPlugin\Bundle\Config\BundleConfig; use Contao\ManagerPlugin\Bundle\Parser\ParserInterface; use Oveleon\ContaoMemberExtensionBundle\ContaoMemberExtensionBundle; class Plugin implements BundlePluginInterface { /** * {@inheritdoc} */ public function getBundles(ParserInterface $parser): array { return [ BundleConfig::create(ContaoMemberExtensionBundle::class) ->setLoadAfter([ContaoCoreBundle::class]) ->setReplace(['contao-member-extension-bundle']), ]; } }