@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.
Files changed (45) hide show
  1. package/bin/index.js +142 -0
  2. package/package.json +30 -0
  3. package/template/.editorconfig +25 -0
  4. package/template/.env +48 -0
  5. package/template/.env.dev +4 -0
  6. package/template/.env.test +3 -0
  7. package/template/.gitattributes +9 -0
  8. package/template/.prettierignore +46 -0
  9. package/template/.prettierrc +9 -0
  10. package/template/.vscode/extensions.json +17 -0
  11. package/template/.vscode/settings.json +19 -0
  12. package/template/README.md +172 -0
  13. package/template/assets/app.css +3 -0
  14. package/template/assets/main.ts +11 -0
  15. package/template/assets/router/index.ts +13 -0
  16. package/template/assets/src/App.vue +571 -0
  17. package/template/assets/styles/app.css +3 -0
  18. package/template/bin/console +21 -0
  19. package/template/bin/phpunit +4 -0
  20. package/template/compose.override.yaml +18 -0
  21. package/template/compose.yaml +25 -0
  22. package/template/composer.json +122 -0
  23. package/template/composer.lock +10332 -0
  24. package/template/config/bundles.php +16 -0
  25. package/template/config/preload.php +5 -0
  26. package/template/config/reference.php +1696 -0
  27. package/template/config/routes/framework.yaml +4 -0
  28. package/template/config/routes/pentatrion_vite.yaml +9 -0
  29. package/template/config/routes/security.yaml +3 -0
  30. package/template/config/routes/web_profiler.yaml +8 -0
  31. package/template/config/routes.yaml +11 -0
  32. package/template/config/services.yaml +23 -0
  33. package/template/importmap.php +22 -0
  34. package/template/package.json +47 -0
  35. package/template/phpunit.dist.xml +44 -0
  36. package/template/pnpm-lock.yaml +2715 -0
  37. package/template/public/index.php +9 -0
  38. package/template/src/Controller/AppController.php +16 -0
  39. package/template/src/Kernel.php +11 -0
  40. package/template/symfony.lock +319 -0
  41. package/template/templates/app.html.twig +13 -0
  42. package/template/templates/base.html.twig +26 -0
  43. package/template/tests/bootstrap.php +13 -0
  44. package/template/tsconfig.json +17 -0
  45. 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
+ ];
@@ -0,0 +1,5 @@
1
+ <?php
2
+
3
+ if (file_exists(dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php')) {
4
+ require dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php';
5
+ }