mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
[WIP] first import of automated recipes [WIP] fix configuration file to be able to compile kernel and serve route [WIP] first build of assets [WIP] Continue working on configuration to load a page [WIP] Reset the bin directory [WIP] remove default migrations files [WIP] fix configuration for running tests [WIP] Installation instructions Fix the default firewall in test login [WIP] fix cs [WIP] update gitlab-ci [WIP] update gitlab-ci [WIP] update gitlab ci [WIP] fix config for running tests [WIP] fix gitlab ci [WIP] try tests/bootstrap php file from symfony bridge instead of phpunit recipe remove kernel.php file fix loading of entrypoint.json in test [wip] increase memory limit for phpstan in test/ci [WIP]: set the correct timezone directly within the phpunit.xml.dist file [WIP]: fix security configuration WIP: fix config for testing
39 lines
2.5 KiB
PHP
39 lines
2.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
|
loophp\PsrHttpMessageBridgeBundle\PsrHttpMessageBridgeBundle::class => ['all' => true],
|
|
ChampsLibres\WopiBundle\WopiBundle::class => ['all' => true],
|
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
|
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
|
|
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
|
Knp\Bundle\MenuBundle\KnpMenuBundle::class => ['all' => true],
|
|
Knp\Bundle\TimeBundle\KnpTimeBundle::class => ['all' => true],
|
|
KnpU\OAuth2ClientBundle\KnpUOAuth2ClientBundle::class => ['all' => true],
|
|
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
|
|
Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],
|
|
Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle::class => ['dev' => true, 'test' => true],
|
|
Misd\PhoneNumberBundle\MisdPhoneNumberBundle::class => ['all' => true],
|
|
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
|
|
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
|
|
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
|
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
|
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
|
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
|
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
|
|
Chill\ActivityBundle\ChillActivityBundle::class => ['all' => true],
|
|
Chill\AsideActivityBundle\ChillAsideActivityBundle::class => ['all' => true],
|
|
Chill\CalendarBundle\ChillCalendarBundle::class => ['all' => true],
|
|
Chill\CustomFieldsBundle\ChillCustomFieldsBundle::class => ['all' => true],
|
|
Chill\DocGeneratorBundle\ChillDocGeneratorBundle::class => ['all' => true],
|
|
Chill\DocStoreBundle\ChillDocStoreBundle::class => ['all' => true],
|
|
Chill\EventBundle\ChillEventBundle::class => ['all' => true],
|
|
Chill\MainBundle\ChillMainBundle::class => ['all' => true],
|
|
Chill\PersonBundle\ChillPersonBundle::class => ['all' => true],
|
|
Chill\ReportBundle\ChillReportBundle::class => ['all' => true],
|
|
Chill\TaskBundle\ChillTaskBundle::class => ['all' => true],
|
|
Chill\ThirdPartyBundle\ChillThirdPartyBundle::class => ['all' => true],
|
|
Chill\BudgetBundle\ChillBudgetBundle::class => ['all' => true],
|
|
Chill\WopiBundle\ChillWopiBundle::class => ['all' => true],
|
|
];
|