Update Flex endpoint

This commit is contained in:
github-action[bot]
2025-08-22 14:18:46 +00:00
parent 16f212754f
commit e78303bc97
6 changed files with 517 additions and 4 deletions
+2 -2
View File
@@ -59,7 +59,7 @@ Additional recipes can be found on the [Contrib Recipes Repository](https://gith
| [symfony/flex](https://packagist.org/packages/symfony/flex) | [2.4](symfony/flex/2.4) | `flex` |
| [symfony/form](https://packagist.org/packages/symfony/form) | [7.2](symfony/form/7.2) | `form` |
| [symfony/forty-six-elks-notifier](https://packagist.org/packages/symfony/forty-six-elks-notifier) | [6.1](symfony/forty-six-elks-notifier/6.1) | `forty-six-elks-notifier`, `fortysixelksnotifier` |
| [symfony/framework-bundle](https://packagist.org/packages/symfony/framework-bundle) | [7.3](symfony/framework-bundle/7.3) | `framework-bundle`, `frameworkbundle` |
| [symfony/framework-bundle](https://packagist.org/packages/symfony/framework-bundle) | [7.4](symfony/framework-bundle/7.4) | `framework-bundle`, `frameworkbundle` |
| [symfony/free-mobile-notifier](https://packagist.org/packages/symfony/free-mobile-notifier) | [5.1](symfony/free-mobile-notifier/5.1) | `free-mobile-notifier`, `freemobilenotifier` |
| [symfony/gateway-api-notifier](https://packagist.org/packages/symfony/gateway-api-notifier) | [5.3](symfony/gateway-api-notifier/5.3) | `gateway-api-notifier` |
| [symfony/gatewayapi-notifier](https://packagist.org/packages/symfony/gatewayapi-notifier) | [5.3](symfony/gatewayapi-notifier/5.3) | `gatewayapi-notifier`, `gatewayapinotifier` |
@@ -127,7 +127,7 @@ Additional recipes can be found on the [Contrib Recipes Repository](https://gith
| [symfony/resend-mailer](https://packagist.org/packages/symfony/resend-mailer) | [7.1](symfony/resend-mailer/7.1) | `resend-mailer`, `resendmailer` |
| [symfony/ring-central-notifier](https://packagist.org/packages/symfony/ring-central-notifier) | [6.3](symfony/ring-central-notifier/6.3) | `ring-central-notifier`, `ringcentralnotifier` |
| [symfony/rocket-chat-notifier](https://packagist.org/packages/symfony/rocket-chat-notifier) | [5.1](symfony/rocket-chat-notifier/5.1) | `rocket-chat-notifier`, `rocketchatnotifier` |
| [symfony/routing](https://packagist.org/packages/symfony/routing) | [7.0](symfony/routing/7.0) | `router`, `routing` |
| [symfony/routing](https://packagist.org/packages/symfony/routing) | [7.4](symfony/routing/7.4) | `router`, `routing` |
| [symfony/scaleway-mailer](https://packagist.org/packages/symfony/scaleway-mailer) | [6.4](symfony/scaleway-mailer/6.4) | `scaleway-mailer`, `scalewaymailer` |
| [symfony/scheduler](https://packagist.org/packages/symfony/scheduler) | [7.2](symfony/scheduler/7.2) | `schedule`, `scheduler`, `scheduling` |
| [symfony/security-bundle](https://packagist.org/packages/symfony/security-bundle) | [6.4](symfony/security-bundle/6.4) | `security`, `security-bundle`, `securitybundle` |
@@ -0,0 +1,208 @@
{
"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": ""
},
"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": [
" * <fg=blue>Run</> your application:",
" 1. Go to the project directory",
" 2. Create your code repository with the <comment>git init</comment> command",
" 3. Download the Symfony CLI at <comment>https://symfony.com/download</> to install a development web server",
"",
" * <fg=blue>Read</> the documentation at <comment>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": [
"<?php",
"",
"if (file_exists(dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php')) {",
" require dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php';",
"}",
""
],
"executable": false
},
"config/routes/framework.yaml": {
"contents": [
"when@dev:",
" _errors:",
" resource: '@FrameworkBundle/Resources/config/routing/errors.php'",
" prefix: /_error",
""
],
"executable": false
},
"config/services.yaml": {
"contents": [
"# $schema: ../vendor/symfony/dependency-injection/Loader/schema/services.schema.json",
"",
"# This file is the entry point to configure your own services.",
"# Files in the packages/ subdirectory configure your dependencies.",
"",
"# Put parameters here that don't need to change on each machine where the app is deployed",
"# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration",
"parameters:",
"",
"services:",
" # default configuration for services in *this* file",
" _defaults:",
" autowire: true # Automatically injects dependencies in your services.",
" autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.",
"",
" # makes classes in src/ available to be used as services",
" # this creates a service per class whose id is the fully-qualified class name",
" App\\:",
" resource: '../src/'",
"",
" # add more service definitions when explicit configuration is needed",
" # please note that last definitions always *replace* previous ones",
""
],
"executable": false
},
"public/index.php": {
"contents": [
"<?php",
"",
"use App\\Kernel;",
"",
"require_once dirname(__DIR__).'/vendor/autoload_runtime.php';",
"",
"return function (array $context) {",
" return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);",
"};",
""
],
"executable": false
},
"src/Controller/.gitignore": {
"contents": [
""
],
"executable": false
},
"src/Kernel.php": {
"contents": [
"<?php",
"",
"namespace App;",
"",
"use Symfony\\Bundle\\FrameworkBundle\\Kernel\\MicroKernelTrait;",
"use Symfony\\Component\\HttpKernel\\Kernel as BaseKernel;",
"",
"class Kernel extends BaseKernel",
"{",
" use MicroKernelTrait;",
"}",
""
],
"executable": false
}
},
"ref": "579baebfdeb4f28dffdf7f4b64cde3fdefdca4bd"
}
}
}
@@ -0,0 +1,46 @@
{
"manifests": {
"symfony/routing": {
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"conflict": {
"symfony/framework-bundle": "<7.0"
}
},
"files": {
"config/packages/routing.yaml": {
"contents": [
"framework:",
" router:",
" # Configure how to generate URLs in non-HTTP contexts, such as CLI commands.",
" # See https://symfony.com/doc/current/routing.html#generating-urls-in-commands",
" #default_uri: http://localhost",
"",
"when@prod:",
" framework:",
" router:",
" strict_requirements: null",
""
],
"executable": false
},
"config/routes.yaml": {
"contents": [
"# $schema: ../vendor/symfony/routing/Loader/schema/routing.schema.json",
"",
"controllers:",
" resource:",
" path: ../src/Controller/",
" namespace: App\\Controller",
" type: attribute",
""
],
"executable": false
}
},
"ref": "bd259b5981e5efc66318729cd6de7bde726d8421"
}
}
}
+7 -2
View File
@@ -761,7 +761,8 @@
"6.4",
"7.0",
"7.2",
"7.3"
"7.3",
"7.4"
],
"symfony/free-mobile-notifier": [
"5.1"
@@ -993,7 +994,8 @@
"6.0",
"6.1",
"6.2",
"7.0"
"7.0",
"7.4"
],
"symfony/scaleway-mailer": [
"6.4"
@@ -1370,6 +1372,9 @@
},
"7.0": {
"symfony/framework-bundle": "<7.0"
},
"7.4": {
"symfony/framework-bundle": "<7.0"
}
},
"symfony/security-bundle": {
+208
View File
@@ -0,0 +1,208 @@
{
"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": ""
},
"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": [
" * <fg=blue>Run</> your application:",
" 1. Go to the project directory",
" 2. Create your code repository with the <comment>git init</comment> command",
" 3. Download the Symfony CLI at <comment>https://symfony.com/download</> to install a development web server",
"",
" * <fg=blue>Read</> the documentation at <comment>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": [
"<?php",
"",
"if (file_exists(dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php')) {",
" require dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php';",
"}",
""
],
"executable": false
},
"config/routes/framework.yaml": {
"contents": [
"when@dev:",
" _errors:",
" resource: '@FrameworkBundle/Resources/config/routing/errors.php'",
" prefix: /_error",
""
],
"executable": false
},
"config/services.yaml": {
"contents": [
"# $schema: ../vendor/symfony/dependency-injection/Loader/schema/services.schema.json",
"",
"# This file is the entry point to configure your own services.",
"# Files in the packages/ subdirectory configure your dependencies.",
"",
"# Put parameters here that don't need to change on each machine where the app is deployed",
"# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration",
"parameters:",
"",
"services:",
" # default configuration for services in *this* file",
" _defaults:",
" autowire: true # Automatically injects dependencies in your services.",
" autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.",
"",
" # makes classes in src/ available to be used as services",
" # this creates a service per class whose id is the fully-qualified class name",
" App\\:",
" resource: '../src/'",
"",
" # add more service definitions when explicit configuration is needed",
" # please note that last definitions always *replace* previous ones",
""
],
"executable": false
},
"public/index.php": {
"contents": [
"<?php",
"",
"use App\\Kernel;",
"",
"require_once dirname(__DIR__).'/vendor/autoload_runtime.php';",
"",
"return function (array $context) {",
" return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);",
"};",
""
],
"executable": false
},
"src/Controller/.gitignore": {
"contents": [
""
],
"executable": false
},
"src/Kernel.php": {
"contents": [
"<?php",
"",
"namespace App;",
"",
"use Symfony\\Bundle\\FrameworkBundle\\Kernel\\MicroKernelTrait;",
"use Symfony\\Component\\HttpKernel\\Kernel as BaseKernel;",
"",
"class Kernel extends BaseKernel",
"{",
" use MicroKernelTrait;",
"}",
""
],
"executable": false
}
},
"ref": "579baebfdeb4f28dffdf7f4b64cde3fdefdca4bd"
}
}
}
+46
View File
@@ -0,0 +1,46 @@
{
"manifests": {
"symfony/routing": {
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"conflict": {
"symfony/framework-bundle": "<7.0"
}
},
"files": {
"config/packages/routing.yaml": {
"contents": [
"framework:",
" router:",
" # Configure how to generate URLs in non-HTTP contexts, such as CLI commands.",
" # See https://symfony.com/doc/current/routing.html#generating-urls-in-commands",
" #default_uri: http://localhost",
"",
"when@prod:",
" framework:",
" router:",
" strict_requirements: null",
""
],
"executable": false
},
"config/routes.yaml": {
"contents": [
"# $schema: ../vendor/symfony/routing/Loader/schema/routing.schema.json",
"",
"controllers:",
" resource:",
" path: ../src/Controller/",
" namespace: App\\Controller",
" type: attribute",
""
],
"executable": false
}
},
"ref": "bd259b5981e5efc66318729cd6de7bde726d8421"
}
}
}