From fa10f214f43ec92d78ad44929394030996a7481b Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Sat, 8 Aug 2026 11:33:25 +0200 Subject: [PATCH] Feat: Initialisiert Symfony-Projekt mit Basisstruktur und Entwicklungsumgebung --- .editorconfig | 17 + .env.dev | 4 + .idea/laravel-idea.xml | 8 + .idea/php-docker-settings.xml | 54 + .idea/php.xml | 89 +- .idea/symfony-template.iml | 3 +- .idea/symfony2.xml | 6 + bin/console | 21 + composer.lock | 3583 +++++++++++++++++++++++++++++ config/packages/debug.yaml | 5 + config/packages/twig.yaml | 6 + config/packages/web_profiler.yaml | 11 + config/preload.php | 5 + config/reference.php | 887 +++++++ config/routes/framework.yaml | 4 + src/Controller/.gitignore | 0 src/Controller/HomeController.php | 18 + symfony.lock | 107 + templates/base.html.twig | 23 + templates/home/index.html.twig | 20 + 20 files changed, 4869 insertions(+), 2 deletions(-) create mode 100644 .editorconfig create mode 100644 .env.dev create mode 100644 .idea/laravel-idea.xml create mode 100644 .idea/php-docker-settings.xml create mode 100644 .idea/symfony2.xml create mode 100755 bin/console create mode 100644 composer.lock create mode 100644 config/packages/debug.yaml create mode 100644 config/packages/twig.yaml create mode 100644 config/packages/web_profiler.yaml create mode 100644 config/preload.php create mode 100644 config/reference.php create mode 100644 config/routes/framework.yaml create mode 100644 src/Controller/.gitignore create mode 100644 src/Controller/HomeController.php create mode 100644 symfony.lock create mode 100644 templates/base.html.twig create mode 100644 templates/home/index.html.twig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6699076 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[{compose.yaml,compose.*.yaml}] +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/.env.dev b/.env.dev new file mode 100644 index 0000000..ec33261 --- /dev/null +++ b/.env.dev @@ -0,0 +1,4 @@ + +###> symfony/framework-bundle ### +APP_SECRET=837fe105fe253f4566c15a2aa7f1815d +###< symfony/framework-bundle ### diff --git a/.idea/laravel-idea.xml b/.idea/laravel-idea.xml new file mode 100644 index 0000000..bd941a4 --- /dev/null +++ b/.idea/laravel-idea.xml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/.idea/php-docker-settings.xml b/.idea/php-docker-settings.xml new file mode 100644 index 0000000..96dbea3 --- /dev/null +++ b/.idea/php-docker-settings.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml index 8d4f284..0e787bc 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -1,5 +1,17 @@ + + + + + + + + + + + @@ -10,10 +22,85 @@