From 11d38641c41c4582c0289546d703dc3ea16c45c7 Mon Sep 17 00:00:00 2001 From: Andreas Kremsler Date: Fri, 26 Apr 2024 14:12:04 +0200 Subject: [PATCH] support of sylius 1.13 --- tests/Application/config/bundles.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Application/config/bundles.php b/tests/Application/config/bundles.php index c1343044..f7f6c32f 100644 --- a/tests/Application/config/bundles.php +++ b/tests/Application/config/bundles.php @@ -1,6 +1,6 @@ ['all' => true], @@ -59,16 +59,16 @@ // Symplify\ConsoleColorDiff\ConsoleColorDiffBundle::class => ['dev' => true, 'test' => true] ]; -if (SyliusCoreBundle::MINOR_VERSION <= 11) { +if (Kernel::MINOR_VERSION <= 11) { $bundles[Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class] = ['all' => true]; } -if (SyliusCoreBundle::MINOR_VERSION >= 12) { +if (Kernel::MINOR_VERSION >= 12) { $bundles[League\FlysystemBundle\FlysystemBundle::class] = ['all' => true]; $bundles[Sylius\Calendar\SyliusCalendarBundle::class ] = ['all' => true]; } -if (SyliusCoreBundle::MINOR_VERSION >= 13) { +if (Kernel::MINOR_VERSION >= 13) { $bundles[Sylius\Abstraction\StateMachine\SyliusStateMachineAbstractionBundle::class ] = ['all' => true]; }