From e5fac9a31b20c48af1c3bdadfff04b2af05e5cca Mon Sep 17 00:00:00 2001 From: Sebastian Blank Date: Wed, 23 Aug 2023 12:21:43 +0200 Subject: [PATCH] Do not use deprecated extensions.php (#534) --- config/bundles.php | 18 +++++++++++++++++- var/config/extensions.php | 13 ------------- 2 files changed, 17 insertions(+), 14 deletions(-) delete mode 100644 var/config/extensions.php diff --git a/config/bundles.php b/config/bundles.php index 0f4f4adc..a106d42a 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -1,6 +1,22 @@ ['all' => true], - Presta\SitemapBundle\PrestaSitemapBundle::class => ['all' => true], + PimcoreEcommerceFrameworkBundle::class => ['all' => true], + PimcoreCustomerManagementFrameworkBundle::class => ['all' => true], + PimcorePaymentProviderPayPalSmartPaymentButtonBundle::class => ['all' => true], + PimcoreDataHubBundle::class => ['all' => true], + OutputDataConfigToolkitBundle::class => ['all' => true], + Web2PrintToolsBundle::class => ['all' => true], + ObjectMergerBundle::class => ['all' => true], + PrestaSitemapBundle::class => ['all' => true], ]; diff --git a/var/config/extensions.php b/var/config/extensions.php deleted file mode 100644 index edf3bfd4..00000000 --- a/var/config/extensions.php +++ /dev/null @@ -1,13 +0,0 @@ - [ - "Pimcore\\Bundle\\EcommerceFrameworkBundle\\PimcoreEcommerceFrameworkBundle" => TRUE, - "CustomerManagementFrameworkBundle\\PimcoreCustomerManagementFrameworkBundle" => TRUE, - "OutputDataConfigToolkitBundle\\OutputDataConfigToolkitBundle" => TRUE, - "Web2PrintToolsBundle\\Web2PrintToolsBundle" => TRUE, - "Pimcore\\Bundle\\DataHubBundle\\PimcoreDataHubBundle" => TRUE, - "Pimcore\\Bundle\\ObjectMergerBundle\\ObjectMergerBundle" => TRUE, - "Pimcore\\Bundle\\EcommerceFrameworkBundle\\PimcorePaymentProviderPayPalSmartPaymentButtonBundle" => TRUE - ] -];