src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php line 38

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Bundle\CoreBundle;
  12. use Doctrine\Inflector\InflectorFactory;
  13. use Doctrine\Inflector\Rules\Patterns;
  14. use Doctrine\Inflector\Rules\Ruleset;
  15. use Doctrine\Inflector\Rules\Substitution;
  16. use Doctrine\Inflector\Rules\Substitutions;
  17. use Doctrine\Inflector\Rules\Transformations;
  18. use Doctrine\Inflector\Rules\Word;
  19. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\BackwardsCompatibility\ResolveShopUserTargetEntityPass;
  20. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\BackwardsCompatibility\Symfony5AuthenticationManagerPass;
  21. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\BackwardsCompatibility\Symfony6PrivateServicesPass;
  22. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\CircularDependencyBreakingErrorListenerPass;
  23. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\IgnoreAnnotationsPass;
  24. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\LazyCacheWarmupPass;
  25. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\LiipImageFiltersPass;
  26. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\RegisterTaxCalculationStrategiesPass;
  27. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\RegisterUriBasedSectionResolverPass;
  28. use Sylius\Bundle\CoreBundle\DependencyInjection\Compiler\TranslatableEntityLocalePass;
  29. use Sylius\Bundle\ResourceBundle\AbstractResourceBundle;
  30. use Sylius\Bundle\ResourceBundle\SyliusResourceBundle;
  31. use Sylius\Component\Resource\Metadata\Metadata;
  32. use Symfony\Component\DependencyInjection\ContainerBuilder;
  33. final class SyliusCoreBundle extends AbstractResourceBundle
  34. {
  35.     public const VERSION '1.13.0-DEV';
  36.     public const VERSION_ID '11300';
  37.     public const MAJOR_VERSION '1';
  38.     public const MINOR_VERSION '13';
  39.     public const RELEASE_VERSION '0';
  40.     public const EXTRA_VERSION 'DEV';
  41.     public function getSupportedDrivers(): array
  42.     {
  43.         return [
  44.             SyliusResourceBundle::DRIVER_DOCTRINE_ORM,
  45.         ];
  46.     }
  47.     public function boot(): void
  48.     {
  49.         parent::boot();
  50.         $factory InflectorFactory::create();
  51.         $factory->withPluralRules(new Ruleset(
  52.             new Transformations(),
  53.             new Patterns(),
  54.             new Substitutions(new Substitution(new Word('taxon'), new Word('taxons'))),
  55.         ));
  56.         $inflector $factory->build();
  57.         Metadata::setInflector($inflector);
  58.     }
  59.     public function build(ContainerBuilder $container): void
  60.     {
  61.         parent::build($container);
  62.         $container->addCompilerPass(new CircularDependencyBreakingErrorListenerPass());
  63.         $container->addCompilerPass(new IgnoreAnnotationsPass());
  64.         $container->addCompilerPass(new LazyCacheWarmupPass());
  65.         $container->addCompilerPass(new LiipImageFiltersPass());
  66.         $container->addCompilerPass(new RegisterTaxCalculationStrategiesPass());
  67.         $container->addCompilerPass(new RegisterUriBasedSectionResolverPass());
  68.         $container->addCompilerPass(new ResolveShopUserTargetEntityPass());
  69.         $container->addCompilerPass(new Symfony5AuthenticationManagerPass());
  70.         $container->addCompilerPass(new Symfony6PrivateServicesPass());
  71.         $container->addCompilerPass(new TranslatableEntityLocalePass());
  72.     }
  73.     /**
  74.      * @psalm-suppress MismatchingDocblockReturnType https://github.com/vimeo/psalm/issues/2345
  75.      */
  76.     protected function getModelNamespace(): string
  77.     {
  78.         return 'Sylius\Component\Core\Model';
  79.     }
  80. }