Update Flex endpoint

This commit is contained in:
github-action[bot]
2025-04-27 17:08:42 +00:00
parent 2a6fe1c793
commit 842330e3d0
8 changed files with 347 additions and 6 deletions
+2 -2
View File
@@ -176,10 +176,10 @@ Additional recipes can be found on the [Contrib Recipes Repository](https://gith
| [symfony/ux-vue](https://packagist.org/packages/symfony/ux-vue) | [2.9](symfony/ux-vue/2.9) | `ux-vue`, `uxvue` |
| [symfony/validator](https://packagist.org/packages/symfony/validator) | [7.0](symfony/validator/7.0) | `validation`, `validator` |
| [symfony/vonage-notifier](https://packagist.org/packages/symfony/vonage-notifier) | [5.4](symfony/vonage-notifier/5.4) | `vonage-notifier`, `vonagenotifier` |
| [symfony/web-profiler-bundle](https://packagist.org/packages/symfony/web-profiler-bundle) | [6.1](symfony/web-profiler-bundle/6.1) | `web-profiler-bundle`, `webprofilerbundle` |
| [symfony/web-profiler-bundle](https://packagist.org/packages/symfony/web-profiler-bundle) | [7.3](symfony/web-profiler-bundle/7.3) | `web-profiler-bundle`, `webprofilerbundle` |
| [symfony/web-server-bundle](https://packagist.org/packages/symfony/web-server-bundle) | [3.3](symfony/web-server-bundle/3.3) | `server`, `web-server`, `web-server-bundle`, `webserver`, `webserverbundle` |
| [symfony/webapp-pack](https://packagist.org/packages/symfony/webapp-pack) | [1.0](symfony/webapp-pack/1.0) | `webapp` |
| [symfony/webhook](https://packagist.org/packages/symfony/webhook) | [6.3](symfony/webhook/6.3) | `webhook` |
| [symfony/webhook](https://packagist.org/packages/symfony/webhook) | [7.3](symfony/webhook/7.3) | `webhook` |
| [symfony/webpack-encore-bundle](https://packagist.org/packages/symfony/webpack-encore-bundle) | [2.0](symfony/webpack-encore-bundle/2.0) | `encore`, `ux`, `webpack`, `webpack-encore`, `webpack-encore-bundle`, `webpackencore`, `webpackencorebundle` |
| [symfony/workflow](https://packagist.org/packages/symfony/workflow) | [3.3](symfony/workflow/3.3) | `workflow` |
| [symfony/yunpian-notifier](https://packagist.org/packages/symfony/yunpian-notifier) | [5.4](symfony/yunpian-notifier/5.4) | `yunpian-notifier`, `yunpiannotifier` |
@@ -0,0 +1,182 @@
{
"manifests": {
"symfony/framework-bundle": {
"manifest": {
"bundles": {
"Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"public/": "%PUBLIC_DIR%/",
"src/": "%SRC_DIR%/"
},
"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": {
"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": [
"# 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": "2098753f7c1145339a83a8d56404bc126744f4b0"
}
}
}
@@ -0,0 +1,54 @@
{
"manifests": {
"symfony/web-profiler-bundle": {
"manifest": {
"bundles": {
"Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle": [
"dev",
"test"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"conflict": {
"symfony/framework-bundle": "<6.1"
}
},
"files": {
"config/packages/web_profiler.yaml": {
"contents": [
"when@dev:",
" web_profiler:",
" toolbar: true",
"",
" framework:",
" profiler:",
" collect_serializer_data: true",
"",
"when@test:",
" framework:",
" profiler: { collect: false }",
""
],
"executable": false
},
"config/routes/web_profiler.yaml": {
"contents": [
"when@dev:",
" web_profiler_wdt:",
" resource: '@WebProfilerBundle/Resources/config/routing/wdt.php'",
" prefix: /_wdt",
"",
" web_profiler_profiler:",
" resource: '@WebProfilerBundle/Resources/config/routing/profiler.php'",
" prefix: /_profiler",
""
],
"executable": false
}
},
"ref": "5b2b543e13942495c0003f67780cb4448af9e606"
}
}
}
@@ -0,0 +1,23 @@
{
"manifests": {
"symfony/webhook": {
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
},
"files": {
"config/routes/webhook.yaml": {
"contents": [
"webhook:",
" resource: '@FrameworkBundle/Resources/config/routing/webhook.php'",
" prefix: /webhook",
""
],
"executable": false
}
},
"ref": "b70844963dc84e9a99b94ae552efe691d74b087f"
}
}
}
+7 -2
View File
@@ -1158,7 +1158,8 @@
"symfony/web-profiler-bundle": [
"3.3",
"5.3",
"6.1"
"6.1",
"7.3"
],
"symfony/web-server-bundle": [
"3.3"
@@ -1167,7 +1168,8 @@
"1.0"
],
"symfony/webhook": [
"6.3"
"6.3",
"7.3"
],
"symfony/webpack-encore-bundle": [
"1.0",
@@ -1443,6 +1445,9 @@
},
"6.1": {
"symfony/framework-bundle": "<6.1"
},
"7.3": {
"symfony/framework-bundle": "<6.1"
}
},
"symfony/webpack-encore-bundle": {
+2 -2
View File
@@ -105,7 +105,7 @@
"contents": [
"when@dev:",
" _errors:",
" resource: '@FrameworkBundle/Resources/config/routing/errors.xml'",
" resource: '@FrameworkBundle/Resources/config/routing/errors.php'",
" prefix: /_error",
""
],
@@ -176,7 +176,7 @@
"executable": false
}
},
"ref": "3ea884696e3646e0420510a2f04248e79363b166"
"ref": "2098753f7c1145339a83a8d56404bc126744f4b0"
}
}
}
+54
View File
@@ -0,0 +1,54 @@
{
"manifests": {
"symfony/web-profiler-bundle": {
"manifest": {
"bundles": {
"Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle": [
"dev",
"test"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"conflict": {
"symfony/framework-bundle": "<6.1"
}
},
"files": {
"config/packages/web_profiler.yaml": {
"contents": [
"when@dev:",
" web_profiler:",
" toolbar: true",
"",
" framework:",
" profiler:",
" collect_serializer_data: true",
"",
"when@test:",
" framework:",
" profiler: { collect: false }",
""
],
"executable": false
},
"config/routes/web_profiler.yaml": {
"contents": [
"when@dev:",
" web_profiler_wdt:",
" resource: '@WebProfilerBundle/Resources/config/routing/wdt.php'",
" prefix: /_wdt",
"",
" web_profiler_profiler:",
" resource: '@WebProfilerBundle/Resources/config/routing/profiler.php'",
" prefix: /_profiler",
""
],
"executable": false
}
},
"ref": "5b2b543e13942495c0003f67780cb4448af9e606"
}
}
}
+23
View File
@@ -0,0 +1,23 @@
{
"manifests": {
"symfony/webhook": {
"manifest": {
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
},
"files": {
"config/routes/webhook.yaml": {
"contents": [
"webhook:",
" resource: '@FrameworkBundle/Resources/config/routing/webhook.php'",
" prefix: /webhook",
""
],
"executable": false
}
},
"ref": "b70844963dc84e9a99b94ae552efe691d74b087f"
}
}
}