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