From 19320c41fb8906a2477ef32ae8759344d7a7510b Mon Sep 17 00:00:00 2001 From: robertSt7 Date: Tue, 10 Dec 2024 15:43:36 +0100 Subject: [PATCH] Task: add-quill to bundleSetup --- src/EventSubscriber/BundleSetupSubscriber.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/EventSubscriber/BundleSetupSubscriber.php b/src/EventSubscriber/BundleSetupSubscriber.php index 3b1791280..5c7f427b8 100644 --- a/src/EventSubscriber/BundleSetupSubscriber.php +++ b/src/EventSubscriber/BundleSetupSubscriber.php @@ -20,6 +20,7 @@ use Pimcore\Bundle\AdminBundle\PimcoreAdminBundle; use Pimcore\Bundle\InstallBundle\Event\BundleSetupEvent; use Pimcore\Bundle\InstallBundle\Event\InstallEvents; +use Pimcore\Bundle\QuillBundle\PimcoreQuillBundle; use Symfony\Component\EventDispatcher\EventSubscriberInterface; class BundleSetupSubscriber implements EventSubscriberInterface @@ -37,5 +38,6 @@ public function bundleSetup(BundleSetupEvent $event): void { // add required PimcoreAdminBundle $event->addRequiredBundle('PimcoreAdminBundle', PimcoreAdminBundle::class, true); + $event->addInstallableBundle('PimcoreQuillBundle', PimcoreQuillBundle::class, true); } }