mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
The commit includes the ChillTicketBundle in the bundles configuration file for testing. Additionally, the autoload-dev directive in the composer.json file was updated to include the "App" namespace for testing purposes. This ensures that the tests related to the "App" namespace are correctly autoloaded.
49 lines
2.8 KiB
PHP
49 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
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],
|
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
|
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
|
|
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
|
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
|
|
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
|
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
|
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
|
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
|
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
|
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
|
//Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
|
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
|
|
Knp\Bundle\MenuBundle\KnpMenuBundle::class => ['all' => true],
|
|
Knp\Bundle\TimeBundle\KnpTimeBundle::class => ['all' => true],
|
|
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
|
|
loophp\PsrHttpMessageBridgeBundle\PsrHttpMessageBridgeBundle::class => ['all' => true],
|
|
\Misd\PhoneNumberBundle\MisdPhoneNumberBundle::class => ['all' => true],
|
|
ChampsLibres\WopiBundle\WopiBundle::class => ['all' => true],
|
|
Chill\WopiBundle\ChillWopiBundle::class => ['all' => true],
|
|
\Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],
|
|
Chill\EventBundle\ChillEventBundle::class => ['all' => true],
|
|
Chill\TicketBundle\ChillTicketBundle::class => ['all' => true],
|
|
];
|