@mrbryan1502/create-symfony-vue 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/index.js +142 -0
- package/package.json +30 -0
- package/template/.editorconfig +25 -0
- package/template/.env +48 -0
- package/template/.env.dev +4 -0
- package/template/.env.test +3 -0
- package/template/.gitattributes +9 -0
- package/template/.prettierignore +46 -0
- package/template/.prettierrc +9 -0
- package/template/.vscode/extensions.json +17 -0
- package/template/.vscode/settings.json +19 -0
- package/template/README.md +172 -0
- package/template/assets/app.css +3 -0
- package/template/assets/main.ts +11 -0
- package/template/assets/router/index.ts +13 -0
- package/template/assets/src/App.vue +571 -0
- package/template/assets/styles/app.css +3 -0
- package/template/bin/console +21 -0
- package/template/bin/phpunit +4 -0
- package/template/compose.override.yaml +18 -0
- package/template/compose.yaml +25 -0
- package/template/composer.json +122 -0
- package/template/composer.lock +10332 -0
- package/template/config/bundles.php +16 -0
- package/template/config/preload.php +5 -0
- package/template/config/reference.php +1696 -0
- package/template/config/routes/framework.yaml +4 -0
- package/template/config/routes/pentatrion_vite.yaml +9 -0
- package/template/config/routes/security.yaml +3 -0
- package/template/config/routes/web_profiler.yaml +8 -0
- package/template/config/routes.yaml +11 -0
- package/template/config/services.yaml +23 -0
- package/template/importmap.php +22 -0
- package/template/package.json +47 -0
- package/template/phpunit.dist.xml +44 -0
- package/template/pnpm-lock.yaml +2715 -0
- package/template/public/index.php +9 -0
- package/template/src/Controller/AppController.php +16 -0
- package/template/src/Kernel.php +11 -0
- package/template/symfony.lock +319 -0
- package/template/templates/app.html.twig +13 -0
- package/template/templates/base.html.twig +26 -0
- package/template/tests/bootstrap.php +13 -0
- package/template/tsconfig.json +17 -0
- package/template/vite.config.js +29 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
return [
|
|
4
|
+
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
|
5
|
+
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
|
6
|
+
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
|
7
|
+
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
|
|
8
|
+
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
|
9
|
+
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
|
10
|
+
Symfony\UX\Turbo\TurboBundle::class => ['all' => true],
|
|
11
|
+
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
|
|
12
|
+
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
|
|
13
|
+
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
|
14
|
+
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
|
|
15
|
+
Pentatrion\ViteBundle\PentatrionViteBundle::class => ['all' => true],
|
|
16
|
+
];
|