symfony_example_app/config/bundles.php

11 lines
476 B
PHP
Raw Permalink Normal View History

2024-01-16 15:54:06 +00:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
2024-01-16 19:43:18 +00:00
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
2024-01-17 09:21:43 +00:00
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
2024-01-17 23:46:20 +00:00
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
2024-01-18 17:48:58 +00:00
Sentry\SentryBundle\SentryBundle::class => ['prod' => true],
2024-01-16 15:54:06 +00:00
];