mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
Add "config/bundles.php" file
This commit is contained in:
parent
b54ad0d09e
commit
3c8d7c6465
1 changed files with 71 additions and 0 deletions
71
config/bundles.php
Normal file
71
config/bundles.php
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
||||
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
||||
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
|
||||
Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true],
|
||||
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
||||
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
||||
Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true],
|
||||
|
||||
Sylius\Bundle\OrderBundle\SyliusOrderBundle::class => ['all' => true],
|
||||
Sylius\Bundle\MoneyBundle\SyliusMoneyBundle::class => ['all' => true],
|
||||
Sylius\Bundle\CurrencyBundle\SyliusCurrencyBundle::class => ['all' => true],
|
||||
Sylius\Bundle\LocaleBundle\SyliusLocaleBundle::class => ['all' => true],
|
||||
Sylius\Bundle\ProductBundle\SyliusProductBundle::class => ['all' => true],
|
||||
Sylius\Bundle\ChannelBundle\SyliusChannelBundle::class => ['all' => true],
|
||||
Sylius\Bundle\AttributeBundle\SyliusAttributeBundle::class => ['all' => true],
|
||||
Sylius\Bundle\TaxationBundle\SyliusTaxationBundle::class => ['all' => true],
|
||||
Sylius\Bundle\ShippingBundle\SyliusShippingBundle::class => ['all' => true],
|
||||
Sylius\Bundle\PaymentBundle\SyliusPaymentBundle::class => ['all' => true],
|
||||
Sylius\Bundle\MailerBundle\SyliusMailerBundle::class => ['all' => true],
|
||||
Sylius\Bundle\PromotionBundle\SyliusPromotionBundle::class => ['all' => true],
|
||||
Sylius\Bundle\AddressingBundle\SyliusAddressingBundle::class => ['all' => true],
|
||||
Sylius\Bundle\InventoryBundle\SyliusInventoryBundle::class => ['all' => true],
|
||||
Sylius\Bundle\TaxonomyBundle\SyliusTaxonomyBundle::class => ['all' => true],
|
||||
Sylius\Bundle\UserBundle\SyliusUserBundle::class => ['all' => true],
|
||||
Sylius\Bundle\CustomerBundle\SyliusCustomerBundle::class => ['all' => true],
|
||||
Sylius\Bundle\UiBundle\SyliusUiBundle::class => ['all' => true],
|
||||
Sylius\Bundle\ReviewBundle\SyliusReviewBundle::class => ['all' => true],
|
||||
Sylius\Bundle\CoreBundle\SyliusCoreBundle::class => ['all' => true],
|
||||
Sylius\Bundle\ResourceBundle\SyliusResourceBundle::class => ['all' => true],
|
||||
Sylius\Bundle\GridBundle\SyliusGridBundle::class => ['all' => true],
|
||||
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true],
|
||||
|
||||
Sonata\CoreBundle\SonataCoreBundle::class => ['all' => true],
|
||||
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
|
||||
Sonata\IntlBundle\SonataIntlBundle::class => ['all' => true],
|
||||
Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle::class => ['all' => true],
|
||||
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true],
|
||||
FOS\RestBundle\FOSRestBundle::class => ['all' => true],
|
||||
|
||||
Knp\Bundle\GaufretteBundle\KnpGaufretteBundle::class => ['all' => true],
|
||||
Knp\Bundle\MenuBundle\KnpMenuBundle::class => ['all' => true],
|
||||
Liip\ImagineBundle\LiipImagineBundle::class => ['all' => true],
|
||||
Payum\Bundle\PayumBundle\PayumBundle::class => ['all' => true],
|
||||
Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true],
|
||||
WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle::class => ['all' => true],
|
||||
|
||||
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
||||
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['all' => true],
|
||||
Sylius\Bundle\FixturesBundle\SyliusFixturesBundle::class => ['all' => true],
|
||||
Sylius\Bundle\PayumBundle\SyliusPayumBundle::class => ['all' => true], // must be added after PayumBundle.
|
||||
Sylius\Bundle\ThemeBundle\SyliusThemeBundle::class => ['all' => true], // must be added after FrameworkBundle
|
||||
|
||||
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['all' => true], // allows to run build in web server, not recommended for prod environment
|
||||
|
||||
Sylius\Bundle\AdminBundle\SyliusAdminBundle::class => ['all' => true],
|
||||
Sylius\Bundle\ShopBundle\SyliusShopBundle::class => ['all' => true],
|
||||
|
||||
FOS\OAuthServerBundle\FOSOAuthServerBundle::class => ['all' => true], // Required by SyliusAdminApiBundle
|
||||
Sylius\Bundle\AdminApiBundle\SyliusAdminApiBundle::class => ['all' => true],
|
||||
|
||||
Sensio\Bundle\DistributionBundle\SensioDistributionBundle::class => ['dev' => true, 'test' => true, 'test_cached' => true],
|
||||
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true, 'test_cached' => true],
|
||||
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true, 'test_cached' => true],
|
||||
Fidry\AliceDataFixtures\Bridge\Symfony\FidryAliceDataFixturesBundle::class => ['dev' => true, 'test' => true, 'test_cached' => true],
|
||||
Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle::class => ['dev' => true, 'test' => true, 'test_cached' => true],
|
||||
];
|
||||
Loading…
Add table
Reference in a new issue