From 3364757284b00ee55af8df04d3591da5d1a95c4b Mon Sep 17 00:00:00 2001 From: Nayte Date: Thu, 12 Jun 2025 15:59:39 +0200 Subject: [PATCH 1/3] creating 7.4 recipe folders --- symfony/console/7.4/bin/console | 21 ++++++++++++ symfony/console/7.4/manifest.json | 6 ++++ symfony/framework-bundle/7.4/.editorconfig | 17 ++++++++++ .../7.4/config/packages/cache.yaml | 19 +++++++++++ .../7.4/config/packages/framework.yaml | 15 +++++++++ .../framework-bundle/7.4/config/preload.php | 5 +++ .../7.4/config/routes/framework.yaml | 4 +++ .../framework-bundle/7.4/config/services.yaml | 20 +++++++++++ symfony/framework-bundle/7.4/manifest.json | 33 +++++++++++++++++++ symfony/framework-bundle/7.4/post-install.txt | 6 ++++ symfony/framework-bundle/7.4/public/index.php | 9 +++++ .../7.4/src/Controller/.gitignore | 0 symfony/framework-bundle/7.4/src/Kernel.php | 0 13 files changed, 155 insertions(+) create mode 100755 symfony/console/7.4/bin/console create mode 100644 symfony/console/7.4/manifest.json create mode 100644 symfony/framework-bundle/7.4/.editorconfig create mode 100644 symfony/framework-bundle/7.4/config/packages/cache.yaml create mode 100644 symfony/framework-bundle/7.4/config/packages/framework.yaml create mode 100644 symfony/framework-bundle/7.4/config/preload.php create mode 100644 symfony/framework-bundle/7.4/config/routes/framework.yaml create mode 100644 symfony/framework-bundle/7.4/config/services.yaml create mode 100644 symfony/framework-bundle/7.4/manifest.json create mode 100644 symfony/framework-bundle/7.4/post-install.txt create mode 100644 symfony/framework-bundle/7.4/public/index.php create mode 100644 symfony/framework-bundle/7.4/src/Controller/.gitignore create mode 100644 symfony/framework-bundle/7.4/src/Kernel.php diff --git a/symfony/console/7.4/bin/console b/symfony/console/7.4/bin/console new file mode 100755 index 000000000..d8d530e2c --- /dev/null +++ b/symfony/console/7.4/bin/console @@ -0,0 +1,21 @@ +#!/usr/bin/env php +Run your application: + 1. Go to the project directory + 2. Create your code repository with the git init command + 3. Download the Symfony CLI at https://symfony.com/download to install a development web server + + * Read the documentation at https://symfony.com/doc diff --git a/symfony/framework-bundle/7.4/public/index.php b/symfony/framework-bundle/7.4/public/index.php new file mode 100644 index 000000000..9982c218d --- /dev/null +++ b/symfony/framework-bundle/7.4/public/index.php @@ -0,0 +1,9 @@ + Date: Thu, 12 Jun 2025 16:00:59 +0200 Subject: [PATCH 2/3] refacto(DX): merge dummy kernel with boot function --- symfony/framework-bundle/7.4/public/index.php | 7 +++++-- symfony/framework-bundle/7.4/src/Kernel.php | 0 2 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 symfony/framework-bundle/7.4/src/Kernel.php diff --git a/symfony/framework-bundle/7.4/public/index.php b/symfony/framework-bundle/7.4/public/index.php index 9982c218d..ace02aaa6 100644 --- a/symfony/framework-bundle/7.4/public/index.php +++ b/symfony/framework-bundle/7.4/public/index.php @@ -1,9 +1,12 @@ Date: Fri, 13 Jun 2025 10:08:56 +0200 Subject: [PATCH 3/3] refacto(DX): console kernel launch --- symfony/console/7.4/bin/console | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/symfony/console/7.4/bin/console b/symfony/console/7.4/bin/console index d8d530e2c..8f4c03072 100755 --- a/symfony/console/7.4/bin/console +++ b/symfony/console/7.4/bin/console @@ -1,8 +1,9 @@ #!/usr/bin/env php