Skip to content

Commit add708d

Browse files
committed
minor #853 [Demo] Sort bundles (OskarStark)
This PR was merged into the main branch. Discussion ---------- [Demo] Sort bundles | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Docs? | no | Issues | -- | License | MIT Commits ------- a1c6f28 [Demo] Sort bundles
2 parents 41ab303 + a1c6f28 commit add708d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

demo/config/bundles.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010
*/
1111

1212
return [
13+
Symfony\AI\AiBundle\AiBundle::class => ['all' => true],
14+
Symfony\AI\McpBundle\McpBundle::class => ['all' => true],
15+
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
1316
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
17+
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
1418
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
15-
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
1619
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
17-
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
18-
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
19-
Symfony\UX\TwigComponent\TwigComponentBundle::class => ['all' => true],
20+
Symfony\UX\Icons\UXIconsBundle::class => ['all' => true],
2021
Symfony\UX\LiveComponent\LiveComponentBundle::class => ['all' => true],
2122
Symfony\UX\StimulusBundle\StimulusBundle::class => ['all' => true],
2223
Symfony\UX\Turbo\TurboBundle::class => ['all' => true],
23-
Symfony\UX\Icons\UXIconsBundle::class => ['all' => true],
24+
Symfony\UX\TwigComponent\TwigComponentBundle::class => ['all' => true],
2425
Symfony\UX\Typed\TypedBundle::class => ['all' => true],
25-
Symfony\AI\AiBundle\AiBundle::class => ['all' => true],
26-
Symfony\AI\McpBundle\McpBundle::class => ['all' => true],
26+
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
2727
];

0 commit comments

Comments
 (0)