mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 04:21:06 +08:00
13 lines
660 B
PHP
13 lines
660 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
||
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
||
|
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
|
||
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
||
|
ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true],
|
||
|
DAMA\DoctrineTestBundle\DAMADoctrineTestBundle::class => ['test' => true],
|
||
|
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
|
||
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
||
|
];
|