From 9983963759f0037affdb6aedf6cdb9b6eb639a0c Mon Sep 17 00:00:00 2001 From: "github-action[bot]" <> Date: Fri, 27 Mar 2026 12:53:09 +0000 Subject: [PATCH] Update Flex endpoint --- RECIPES.md | 2 +- ...7d8de204dbd47f402eee6adb3a46bee5f8510.json | 218 ++++++++++++++++++ index.json | 3 +- symfony.framework-bundle.8.1.json | 218 ++++++++++++++++++ 4 files changed, 439 insertions(+), 2 deletions(-) create mode 100644 archived/symfony.framework-bundle/9e77d8de204dbd47f402eee6adb3a46bee5f8510.json create mode 100644 symfony.framework-bundle.8.1.json diff --git a/RECIPES.md b/RECIPES.md index fcadbc93..2b02559a 100644 --- a/RECIPES.md +++ b/RECIPES.md @@ -116,7 +116,7 @@ Additional recipes can be found on the [Contrib Recipes Repository](https://gith | [symfony/flex](https://packagist.org/packages/symfony/flex) | [2.4](../../../tree/main/symfony/flex/2.4) | `flex` | | [symfony/form](https://packagist.org/packages/symfony/form) | [7.2](../../../tree/main/symfony/form/7.2) | `form` | | [symfony/forty-six-elks-notifier](https://packagist.org/packages/symfony/forty-six-elks-notifier) | [6.1](../../../tree/main/symfony/forty-six-elks-notifier/6.1) | `forty-six-elks-notifier`, `fortysixelksnotifier` | -| [symfony/framework-bundle](https://packagist.org/packages/symfony/framework-bundle) | [7.4](../../../tree/main/symfony/framework-bundle/7.4) | `framework-bundle`, `frameworkbundle` | +| [symfony/framework-bundle](https://packagist.org/packages/symfony/framework-bundle) | [8.1](../../../tree/main/symfony/framework-bundle/8.1) | `framework-bundle`, `frameworkbundle` | | [symfony/free-mobile-notifier](https://packagist.org/packages/symfony/free-mobile-notifier) | [5.1](../../../tree/main/symfony/free-mobile-notifier/5.1) | `free-mobile-notifier`, `freemobilenotifier` | | [symfony/gateway-api-notifier](https://packagist.org/packages/symfony/gateway-api-notifier) | [5.3](../../../tree/main/symfony/gateway-api-notifier/5.3) | `gateway-api-notifier` | | [symfony/gatewayapi-notifier](https://packagist.org/packages/symfony/gatewayapi-notifier) | [5.3](../../../tree/main/symfony/gatewayapi-notifier/5.3) | `gatewayapi-notifier`, `gatewayapinotifier` | diff --git a/archived/symfony.framework-bundle/9e77d8de204dbd47f402eee6adb3a46bee5f8510.json b/archived/symfony.framework-bundle/9e77d8de204dbd47f402eee6adb3a46bee5f8510.json new file mode 100644 index 00000000..af05d5dc --- /dev/null +++ b/archived/symfony.framework-bundle/9e77d8de204dbd47f402eee6adb3a46bee5f8510.json @@ -0,0 +1,218 @@ +{ + "manifests": { + "symfony/framework-bundle": { + "manifest": { + "bundles": { + "Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "public/": "%PUBLIC_DIR%/", + "src/": "%SRC_DIR%/", + ".editorconfig": ".editorconfig" + }, + "composer-scripts": { + "cache:clear": "symfony-cmd", + "assets:install %PUBLIC_DIR%": "symfony-cmd" + }, + "env": { + "APP_ENV": "dev", + "APP_SECRET": "", + "APP_SHARE_DIR": "%VAR_DIR%/share" + }, + "dotenv": { + "dev": { + "APP_SECRET": "%generate(secret)%" + } + }, + "gitignore": [ + "/.env.local", + "/.env.local.php", + "/.env.*.local", + "/%CONFIG_DIR%/secrets/prod/prod.decrypt.private.php", + "/%PUBLIC_DIR%/bundles/", + "/%VAR_DIR%/", + "/vendor/" + ], + "post-install-output": [ + " * 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" + ] + }, + "files": { + ".editorconfig": { + "contents": [ + "# 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", + "" + ], + "executable": false + }, + "config/packages/cache.yaml": { + "contents": [ + "framework:", + " cache:", + " # Unique name of your app: used to compute stable namespaces for cache keys.", + " #prefix_seed: your_vendor_name/app_name", + "", + " # The \"app\" cache stores to the filesystem by default.", + " # The data in this cache should persist between deploys.", + " # Other options include:", + "", + " # Redis", + " #app: cache.adapter.redis", + " #default_redis_provider: redis://localhost", + "", + " # APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)", + " #app: cache.adapter.apcu", + "", + " # Namespaced pools use the above \"app\" backend by default", + " #pools:", + " #my.dedicated.cache: null", + "" + ], + "executable": false + }, + "config/packages/framework.yaml": { + "contents": [ + "# see https://symfony.com/doc/current/reference/configuration/framework.html", + "framework:", + " secret: '%env(APP_SECRET)%'", + "", + " # Note that the session will be started ONLY if you read or write from it.", + " session: true", + "", + " #esi: true", + " #fragments: true", + "", + "when@test:", + " framework:", + " test: true", + " session:", + " storage_factory_id: session.storage.factory.mock_file", + "" + ], + "executable": false + }, + "config/preload.php": { + "contents": [ + " An array of allowed values for APP_ENV", + " */", + " private function getAllowedEnvs(): array", + " {", + " return ['prod', 'dev', 'test'];", + " }", + "}", + "" + ], + "executable": false + } + }, + "ref": "9e77d8de204dbd47f402eee6adb3a46bee5f8510" + } + } +} diff --git a/index.json b/index.json index db57be4c..f5df9f7e 100644 --- a/index.json +++ b/index.json @@ -1063,7 +1063,8 @@ "7.0", "7.2", "7.3", - "7.4" + "7.4", + "8.1" ], "symfony/free-mobile-notifier": [ "5.1" diff --git a/symfony.framework-bundle.8.1.json b/symfony.framework-bundle.8.1.json new file mode 100644 index 00000000..af05d5dc --- /dev/null +++ b/symfony.framework-bundle.8.1.json @@ -0,0 +1,218 @@ +{ + "manifests": { + "symfony/framework-bundle": { + "manifest": { + "bundles": { + "Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "public/": "%PUBLIC_DIR%/", + "src/": "%SRC_DIR%/", + ".editorconfig": ".editorconfig" + }, + "composer-scripts": { + "cache:clear": "symfony-cmd", + "assets:install %PUBLIC_DIR%": "symfony-cmd" + }, + "env": { + "APP_ENV": "dev", + "APP_SECRET": "", + "APP_SHARE_DIR": "%VAR_DIR%/share" + }, + "dotenv": { + "dev": { + "APP_SECRET": "%generate(secret)%" + } + }, + "gitignore": [ + "/.env.local", + "/.env.local.php", + "/.env.*.local", + "/%CONFIG_DIR%/secrets/prod/prod.decrypt.private.php", + "/%PUBLIC_DIR%/bundles/", + "/%VAR_DIR%/", + "/vendor/" + ], + "post-install-output": [ + " * 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" + ] + }, + "files": { + ".editorconfig": { + "contents": [ + "# 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", + "" + ], + "executable": false + }, + "config/packages/cache.yaml": { + "contents": [ + "framework:", + " cache:", + " # Unique name of your app: used to compute stable namespaces for cache keys.", + " #prefix_seed: your_vendor_name/app_name", + "", + " # The \"app\" cache stores to the filesystem by default.", + " # The data in this cache should persist between deploys.", + " # Other options include:", + "", + " # Redis", + " #app: cache.adapter.redis", + " #default_redis_provider: redis://localhost", + "", + " # APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)", + " #app: cache.adapter.apcu", + "", + " # Namespaced pools use the above \"app\" backend by default", + " #pools:", + " #my.dedicated.cache: null", + "" + ], + "executable": false + }, + "config/packages/framework.yaml": { + "contents": [ + "# see https://symfony.com/doc/current/reference/configuration/framework.html", + "framework:", + " secret: '%env(APP_SECRET)%'", + "", + " # Note that the session will be started ONLY if you read or write from it.", + " session: true", + "", + " #esi: true", + " #fragments: true", + "", + "when@test:", + " framework:", + " test: true", + " session:", + " storage_factory_id: session.storage.factory.mock_file", + "" + ], + "executable": false + }, + "config/preload.php": { + "contents": [ + " An array of allowed values for APP_ENV", + " */", + " private function getAllowedEnvs(): array", + " {", + " return ['prod', 'dev', 'test'];", + " }", + "}", + "" + ], + "executable": false + } + }, + "ref": "9e77d8de204dbd47f402eee6adb3a46bee5f8510" + } + } +}