Compare commits

..
Author SHA1 Message Date
github-action[bot]andgithub-action[bot] 17ff8ca755 Create Flex endpoint 2026-08-15 05:37:35 +00:00
3 changed files with 73 additions and 52 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
{
"aliases": [],
"recipes": {
"webowi/symfony-monitoring-bundle": [
"zestly/dev-login-bundle": [
"0.1"
]
},
@@ -12,9 +12,9 @@
"_links": {
"repository": "github.com/symfony/recipes-contrib",
"origin_template": "{package}:{version}@github.com/symfony/recipes-contrib:main",
"recipe_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2017/{package_dotted}.{version}.json",
"recipe_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2026/{package_dotted}.{version}.json",
"recipe_template_relative": "{package_dotted}.{version}.json",
"archived_recipes_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2017/archived/{package_dotted}/{ref}.json",
"archived_recipes_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2026/archived/{package_dotted}/{ref}.json",
"archived_recipes_template_relative": "archived/{package_dotted}/{ref}.json"
}
}
-49
View File
@@ -1,49 +0,0 @@
{
"manifests": {
"webowi/symfony-monitoring-bundle": {
"manifest": {
"bundles": {
"Webowi\\SymfonyMonitoringBundle\\SymfonyMonitoringBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"MONITORING_WEBOWI_URL": "",
"MONITORING_WEBOWI_API_KEY": ""
},
"post-install-output": [
"A config/packages/symfony_monitoring.yaml file has been added with placeholder values.",
"",
"Set the MONITORING_WEBOWI_URL and MONITORING_WEBOWI_API_KEY environment variables,",
"or edit the file directly, using the url and api_key from your Monitoring Webowi",
"project's ingestion-key page (GET /api/v1/projects/{uuid}/ingestion-key).",
"",
"Running this app in Docker? 'localhost' inside your app's container does not reach",
"a Monitoring Webowi instance running in a sibling container/stack. Use",
"http://host.docker.internal:<port>/... (Docker Desktop on Mac/Windows) instead,",
"or the instance's container/service name if both stacks share a Docker network.",
"",
"No further wiring is needed \u2014 this bundle registers its own Monolog handler chain."
]
},
"files": {
"config/packages/symfony_monitoring.yaml": {
"contents": [
"# Get your project's url and api_key from your Monitoring Webowi project's ingestion-key page",
"# (GET /api/v1/projects/{uuid}/ingestion-key).",
"symfony_monitoring:",
" url: '%env(MONITORING_WEBOWI_URL)%'",
" api_key: '%env(MONITORING_WEBOWI_API_KEY)%'",
" level: error",
""
],
"executable": false
}
},
"ref": "b20a13aef56929cb188150840ad43a4cd278047a"
}
}
}
+70
View File
@@ -0,0 +1,70 @@
{
"manifests": {
"zestly/dev-login-bundle": {
"manifest": {
"bundles": {
"Zestly\\DevLoginBundle\\ZestlyDevLoginBundle": [
"dev"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"post-install-output": [
" * Dev login is ready. Start your server and open:",
"",
" <fg=yellow>/_dev/login</> list the identities you can become",
" <fg=yellow>/_dev/login/{identifier}</> log in as one of them, no password",
"",
" * List them from the console instead:",
"",
" <fg=yellow>php bin/console dev:login</>",
"",
" * Declare who shows up in that list in <comment>config/packages/dev/zestly_dev_login.yaml</>.",
"",
" * This grants password-free login to any account your user provider accepts.",
" It registers no services outside the dev environment, and its routes live in",
" <comment>config/routes/dev/</> so they do not exist in a production router.",
"",
" * Docs: <comment>https://github.com/ZestlyDigital/dev-login-bundle</>"
]
},
"files": {
"config/packages/dev/zestly_dev_login.yaml": {
"contents": [
"zestly_dev_login:",
" # The identities offered by GET /_dev/login and `bin/console dev:login`.",
" #",
" # There is no sensible default for this \u2014 it depends entirely on your fixtures \u2014 which is",
" # why it is the one setting this recipe writes. Everything else the bundle exposes already",
" # has a working default and is documented in the README.",
" #",
" # This is a convenience menu, not a whitelist: any identifier your application's user",
" # provider accepts will work, and listing one here grants nothing on its own.",
" #",
" # To build the list from your fixtures, a repository, or per-subdomain in a multi-tenant",
" # app, implement Zestly\\DevLoginBundle\\Identity\\IdentityProviderInterface and alias it \u2014",
" # it receives the current Request.",
" identities: []",
" # - { identifier: 'admin@example.com', label: 'Admin', roles: ['ROLE_ADMIN'] }",
" # - { identifier: 'user@example.com', label: 'Regular user' }",
""
],
"executable": false
},
"config/routes/dev/zestly_dev_login.yaml": {
"contents": [
"# Dev login endpoints. Loaded only because this file lives in config/routes/dev/ \u2014 that is",
"# one of the bundle's safety gates, so a production router never learns these paths exist.",
"# If you move this file out of a dev-scoped directory, you remove that gate.",
"zestly_dev_login:",
" resource: '@ZestlyDevLoginBundle/config/routes.php'",
""
],
"executable": false
}
},
"ref": "9d5bc77ad365e45a5f93a8520aad6ca8b4a976d1"
}
}
}