diff --git a/composer.json b/composer.json index c706492..85047e2 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,6 @@ }, "autoload": { "psr-4": { - "EzSystems\\EzPlatformStandardDesignBundle\\": "src/bundle", "Ibexa\\StandardDesign\\": "src/lib/", "Ibexa\\Bundle\\StandardDesign\\": "src/bundle/", "Ibexa\\Contracts\\StandardDesign\\": "src/contracts/" @@ -29,7 +28,6 @@ }, "autoload-dev": { "psr-4": { - "EzSystems\\Tests\\EzPlatformStandardDesignBundle\\": "tests/bundle", "Ibexa\\Tests\\StandardDesign\\": "tests/lib/", "Ibexa\\Tests\\Bundle\\StandardDesign\\": "tests/bundle/" } diff --git a/src/bundle/DependencyInjection/Compiler/KernelOverridePass.php b/src/bundle/DependencyInjection/Compiler/KernelOverridePass.php index c2cfa12..0c2fdde 100644 --- a/src/bundle/DependencyInjection/Compiler/KernelOverridePass.php +++ b/src/bundle/DependencyInjection/Compiler/KernelOverridePass.php @@ -68,5 +68,3 @@ private function setStandardThemeDirectories(ContainerBuilder $container) $container->setParameter('ibexa.design.templates.path_map', $templatesPathMap); } } - -class_alias(KernelOverridePass::class, 'EzSystems\EzPlatformStandardDesignBundle\DependencyInjection\Compiler\EzKernelOverridePass'); diff --git a/src/bundle/DependencyInjection/Compiler/StandardThemePass.php b/src/bundle/DependencyInjection/Compiler/StandardThemePass.php index 3c514b1..d528888 100644 --- a/src/bundle/DependencyInjection/Compiler/StandardThemePass.php +++ b/src/bundle/DependencyInjection/Compiler/StandardThemePass.php @@ -39,5 +39,3 @@ public function process(ContainerBuilder $container) $container->setParameter('ibexa.design.list', $designList); } } - -class_alias(StandardThemePass::class, 'EzSystems\EzPlatformStandardDesignBundle\DependencyInjection\Compiler\StandardThemePass'); diff --git a/src/bundle/DependencyInjection/Configuration.php b/src/bundle/DependencyInjection/Configuration.php index 4b35e0b..bf610e3 100644 --- a/src/bundle/DependencyInjection/Configuration.php +++ b/src/bundle/DependencyInjection/Configuration.php @@ -35,5 +35,3 @@ public function getConfigTreeBuilder() return $treeBuilder; } } - -class_alias(Configuration::class, 'EzSystems\EzPlatformStandardDesignBundle\DependencyInjection\Configuration'); diff --git a/src/bundle/DependencyInjection/IbexaStandardDesignExtension.php b/src/bundle/DependencyInjection/IbexaStandardDesignExtension.php index d6b10d2..8543121 100644 --- a/src/bundle/DependencyInjection/IbexaStandardDesignExtension.php +++ b/src/bundle/DependencyInjection/IbexaStandardDesignExtension.php @@ -70,5 +70,3 @@ private function prependEzDesignSettings(ContainerBuilder $containerBuilder) $containerBuilder->addResource(new FileResource($configFile)); } } - -class_alias(IbexaStandardDesignExtension::class, 'EzSystems\EzPlatformStandardDesignBundle\DependencyInjection\EzPlatformStandardDesignExtension'); diff --git a/src/bundle/IbexaStandardDesignBundle.php b/src/bundle/IbexaStandardDesignBundle.php index 0aa0b66..3eea4e8 100644 --- a/src/bundle/IbexaStandardDesignBundle.php +++ b/src/bundle/IbexaStandardDesignBundle.php @@ -28,5 +28,3 @@ public function build(ContainerBuilder $container) $container->addCompilerPass(new StandardThemePass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 1); } } - -class_alias(IbexaStandardDesignBundle::class, 'EzSystems\EzPlatformStandardDesignBundle\EzPlatformStandardDesignBundle'); diff --git a/tests/bundle/DependencyInjection/Compiler/KernelOverridePassTest.php b/tests/bundle/DependencyInjection/Compiler/KernelOverridePassTest.php index d8423b0..0854e7c 100644 --- a/tests/bundle/DependencyInjection/Compiler/KernelOverridePassTest.php +++ b/tests/bundle/DependencyInjection/Compiler/KernelOverridePassTest.php @@ -96,5 +96,3 @@ public function testKernelTemplateNamesHaveEzDesignPrefix() } } } - -class_alias(KernelOverridePassTest::class, 'EzSystems\Tests\EzPlatformStandardDesignBundle\DependencyInjection\Compiler\EzKernelOverridePassTest'); diff --git a/tests/bundle/DependencyInjection/Compiler/StandardThemePassTest.php b/tests/bundle/DependencyInjection/Compiler/StandardThemePassTest.php index 5cb614a..2badd7c 100644 --- a/tests/bundle/DependencyInjection/Compiler/StandardThemePassTest.php +++ b/tests/bundle/DependencyInjection/Compiler/StandardThemePassTest.php @@ -81,5 +81,3 @@ protected function registerCompilerPass(ContainerBuilder $container): void $container->addCompilerPass(new StandardThemePass()); } } - -class_alias(StandardThemePassTest::class, 'EzSystems\Tests\EzPlatformStandardDesignBundle\DependencyInjection\Compiler\StandardThemePassTest'); diff --git a/tests/bundle/DependencyInjection/EzPlatformStandardDesignExtensionTest.php b/tests/bundle/DependencyInjection/EzPlatformStandardDesignExtensionTest.php index 07325fe..f3b2bbe 100644 --- a/tests/bundle/DependencyInjection/EzPlatformStandardDesignExtensionTest.php +++ b/tests/bundle/DependencyInjection/EzPlatformStandardDesignExtensionTest.php @@ -34,5 +34,3 @@ public function testExtensionPrependsStandardDesignSettings() ); } } - -class_alias(EzPlatformStandardDesignExtensionTest::class, 'EzSystems\Tests\EzPlatformStandardDesignBundle\DependencyInjection\EzPlatformStandardDesignExtensionTest');