Update Flex endpoint

This commit is contained in:
github-action[bot]
2026-03-29 01:41:31 +00:00
parent 93d7348182
commit 7c0ee1377c
4 changed files with 164 additions and 0 deletions
+1
View File
@@ -291,6 +291,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
| [jbtcd/fitbit-bundle](https://packagist.org/packages/jbtcd/fitbit-bundle) | [1.0](../../../tree/main/jbtcd/fitbit-bundle/1.0) |
| [jeandanyel/crud-bundle](https://packagist.org/packages/jeandanyel/crud-bundle) | [0.1](../../../tree/main/jeandanyel/crud-bundle/0.1) |
| [jeandanyel/list-bundle](https://packagist.org/packages/jeandanyel/list-bundle) | [0.1](../../../tree/main/jeandanyel/list-bundle/0.1) |
| [jmonitor/jmonitor-bundle](https://packagist.org/packages/jmonitor/jmonitor-bundle) | [1.0](../../../tree/main/jmonitor/jmonitor-bundle/1.0) |
| [jmose/command-scheduler-bundle](https://packagist.org/packages/jmose/command-scheduler-bundle) | [2.0](../../../tree/main/jmose/command-scheduler-bundle/2.0) |
| [jms/serializer-bundle](https://packagist.org/packages/jms/serializer-bundle) | [4.0](../../../tree/main/jms/serializer-bundle/4.0) |
| [jolicode/gif-exception-bundle](https://packagist.org/packages/jolicode/gif-exception-bundle) | [1.0](../../../tree/main/jolicode/gif-exception-bundle/1.0) |
@@ -0,0 +1,80 @@
{
"manifests": {
"jmonitor/jmonitor-bundle": {
"manifest": {
"bundles": {
"Jmonitor\\JmonitorBundle\\JmonitorBundle": [
"dev",
"prod"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"JMONITOR_API_KEY": ""
},
"dotenv": {
"prod": {
"JMONITOR_API_KEY": ""
}
}
},
"files": {
"config/packages/jmonitor.yaml": {
"contents": [
"jmonitor:",
" # project_api_key can be empty to disable sending data to Jmonitor",
" # useful for testing pourposes in non-production environments",
" project_api_key: '%env(JMONITOR_API_KEY)%'",
"",
" # Optional (recommended): use a specific logger service (Symfony's default is \"logger\").",
" logger: 'logger'",
"",
" # Optional: provide a custom HTTP client service",
" # http_client: 'http_client'",
"",
"when@dev:",
" jmonitor:",
" collectors:",
" # Start with a basic collector for testing purposes",
" # On non-linux OS, you can use RandomAdapter for testing purposes",
" # system:",
" # enabled: true",
" # adapter: \"Jmonitor\\\\Collector\\\\System\\\\Adapter\\\\RandomAdapter\"",
" system:",
" enabled: true",
"",
"when@prod:",
" jmonitor:",
" # Add collectors configured for production here",
" # Refer to the package documentation for all available collectors: https://github.com/jmonitor/jmonitor-bundle",
" collectors:",
" system:",
" enabled: true",
""
],
"executable": false
},
"config/routes/jmonitor.yaml": {
"contents": [
"jmonitor_expose_php_metrics:",
" path: '/jmonitor/php-metrics'",
" controller: Jmonitor\\JmonitorBundle\\Controller\\JmonitorPhpController",
"",
"# Secured route in production with localhost host restriction",
"# Refer to symfony docs for more information about security",
"when@prod:",
" jmonitor_expose_php_metrics:",
" path: '/jmonitor/php-metrics'",
" controller: Jmonitor\\JmonitorBundle\\Controller\\JmonitorPhpController",
" host: localhost",
""
],
"executable": false
}
},
"ref": "a0d9fd41d51a86345bee3f4ed5205c6351217f73"
}
}
}
+3
View File
@@ -923,6 +923,9 @@
"jeandanyel/list-bundle": [
"0.1"
],
"jmonitor/jmonitor-bundle": [
"1.0"
],
"jmose/command-scheduler-bundle": [
"2.0"
],
+80
View File
@@ -0,0 +1,80 @@
{
"manifests": {
"jmonitor/jmonitor-bundle": {
"manifest": {
"bundles": {
"Jmonitor\\JmonitorBundle\\JmonitorBundle": [
"dev",
"prod"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"JMONITOR_API_KEY": ""
},
"dotenv": {
"prod": {
"JMONITOR_API_KEY": ""
}
}
},
"files": {
"config/packages/jmonitor.yaml": {
"contents": [
"jmonitor:",
" # project_api_key can be empty to disable sending data to Jmonitor",
" # useful for testing pourposes in non-production environments",
" project_api_key: '%env(JMONITOR_API_KEY)%'",
"",
" # Optional (recommended): use a specific logger service (Symfony's default is \"logger\").",
" logger: 'logger'",
"",
" # Optional: provide a custom HTTP client service",
" # http_client: 'http_client'",
"",
"when@dev:",
" jmonitor:",
" collectors:",
" # Start with a basic collector for testing purposes",
" # On non-linux OS, you can use RandomAdapter for testing purposes",
" # system:",
" # enabled: true",
" # adapter: \"Jmonitor\\\\Collector\\\\System\\\\Adapter\\\\RandomAdapter\"",
" system:",
" enabled: true",
"",
"when@prod:",
" jmonitor:",
" # Add collectors configured for production here",
" # Refer to the package documentation for all available collectors: https://github.com/jmonitor/jmonitor-bundle",
" collectors:",
" system:",
" enabled: true",
""
],
"executable": false
},
"config/routes/jmonitor.yaml": {
"contents": [
"jmonitor_expose_php_metrics:",
" path: '/jmonitor/php-metrics'",
" controller: Jmonitor\\JmonitorBundle\\Controller\\JmonitorPhpController",
"",
"# Secured route in production with localhost host restriction",
"# Refer to symfony docs for more information about security",
"when@prod:",
" jmonitor_expose_php_metrics:",
" path: '/jmonitor/php-metrics'",
" controller: Jmonitor\\JmonitorBundle\\Controller\\JmonitorPhpController",
" host: localhost",
""
],
"executable": false
}
},
"ref": "a0d9fd41d51a86345bee3f4ed5205c6351217f73"
}
}
}