Update Flex endpoint

This commit is contained in:
github-action[bot]
2025-04-22 14:25:38 +00:00
parent 0bef1ed4a3
commit c80c659c12
4 changed files with 178 additions and 0 deletions
+1
View File
@@ -675,6 +675,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
| [ywh/doctrine-encryption-bundle](https://packagist.org/packages/ywh/doctrine-encryption-bundle) | [1.0](ywh/doctrine-encryption-bundle/1.0) |
| [zemasterkrom/zmkr-cloudflare-turnstile-bundle](https://packagist.org/packages/zemasterkrom/zmkr-cloudflare-turnstile-bundle) | [0.1](zemasterkrom/zmkr-cloudflare-turnstile-bundle/0.1) |
| [zendesk/zendesk_api_client_php](https://packagist.org/packages/zendesk/zendesk_api_client_php) | [2.2](zendesk/zendesk_api_client_php/2.2) |
| [zenstruck/messenger-monitor-bundle](https://packagist.org/packages/zenstruck/messenger-monitor-bundle) | [0.5](zenstruck/messenger-monitor-bundle/0.5) |
| [zenstruck/redis](https://packagist.org/packages/zenstruck/redis) | [0.1](zenstruck/redis/0.1) |
| [zenstruck/signed-url-bundle](https://packagist.org/packages/zenstruck/signed-url-bundle) | [0.1](zenstruck/signed-url-bundle/0.1) |
| [zenstruck/twig-service-bundle](https://packagist.org/packages/zenstruck/twig-service-bundle) | [0.2](zenstruck/twig-service-bundle/0.2) |
@@ -0,0 +1,87 @@
{
"manifests": {
"zenstruck/messenger-monitor-bundle": {
"manifest": {
"bundles": {
"Zenstruck\\Messenger\\Monitor\\ZenstruckMessengerMonitorBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
},
"post-install-output": [
"* You're almost ready to use zenstruck/messenger-monitor-bundle!",
"",
"* First, create a migration with <comment>symfony console make:migration</comment>",
" and run it with <comment>symfony console doctrine:migrations:migrate</comment>.",
"",
"* Visit <comment>/admin/messenger</comment> as a user with <comment>ROLE_ADMIN</comment>",
" to see the Dashboard UI.",
"",
"* <fg=blue>Read</> the documentation at <comment>https://github.com/zenstruck/messenger-monitor-bundle</>"
]
},
"files": {
"config/packages/zenstruck_messenger_monitor.yaml": {
"contents": [
"zenstruck_messenger_monitor:",
" storage:",
" orm:",
" entity_class: App\\Entity\\ProcessedMessage",
""
],
"executable": false
},
"src/Controller/Admin/MessengerMonitorController.php": {
"contents": [
"<?php",
"",
"namespace App\\Controller\\Admin;",
"",
"use Symfony\\Component\\Routing\\Attribute\\Route;",
"use Symfony\\Component\\Security\\Http\\Attribute\\IsGranted;",
"use Zenstruck\\Messenger\\Monitor\\Controller\\MessengerMonitorController as BaseMessengerMonitorController;",
"",
"#[Route('/admin/messenger')]",
"#[IsGranted('ROLE_ADMIN')]",
"class MessengerMonitorController extends BaseMessengerMonitorController",
"{",
"}",
""
],
"executable": false
},
"src/Entity/ProcessedMessage.php": {
"contents": [
"<?php",
"",
"namespace App\\Entity;",
"",
"use Zenstruck\\Messenger\\Monitor\\History\\Model\\ProcessedMessage as BaseProcessedMessage;",
"use Doctrine\\ORM\\Mapping as ORM;",
"",
"#[ORM\\Entity(readOnly: true)]",
"#[ORM\\Table('messenger_processed_messages')]",
"class ProcessedMessage extends BaseProcessedMessage",
"{",
" #[ORM\\Id]",
" #[ORM\\GeneratedValue]",
" #[ORM\\Column]",
" private ?int $id = null;",
"",
" public function id(): ?int",
" {",
" return $this->id;",
" }",
"}",
""
],
"executable": false
}
},
"ref": "e830a96e19aef36b23c63a4f8884fe51815f06d8"
}
}
}
+3
View File
@@ -2168,6 +2168,9 @@
"zendesk/zendesk_api_client_php": [
"2.2"
],
"zenstruck/messenger-monitor-bundle": [
"0.5"
],
"zenstruck/redis": [
"0.1"
],
@@ -0,0 +1,87 @@
{
"manifests": {
"zenstruck/messenger-monitor-bundle": {
"manifest": {
"bundles": {
"Zenstruck\\Messenger\\Monitor\\ZenstruckMessengerMonitorBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
},
"post-install-output": [
"* You're almost ready to use zenstruck/messenger-monitor-bundle!",
"",
"* First, create a migration with <comment>symfony console make:migration</comment>",
" and run it with <comment>symfony console doctrine:migrations:migrate</comment>.",
"",
"* Visit <comment>/admin/messenger</comment> as a user with <comment>ROLE_ADMIN</comment>",
" to see the Dashboard UI.",
"",
"* <fg=blue>Read</> the documentation at <comment>https://github.com/zenstruck/messenger-monitor-bundle</>"
]
},
"files": {
"config/packages/zenstruck_messenger_monitor.yaml": {
"contents": [
"zenstruck_messenger_monitor:",
" storage:",
" orm:",
" entity_class: App\\Entity\\ProcessedMessage",
""
],
"executable": false
},
"src/Controller/Admin/MessengerMonitorController.php": {
"contents": [
"<?php",
"",
"namespace App\\Controller\\Admin;",
"",
"use Symfony\\Component\\Routing\\Attribute\\Route;",
"use Symfony\\Component\\Security\\Http\\Attribute\\IsGranted;",
"use Zenstruck\\Messenger\\Monitor\\Controller\\MessengerMonitorController as BaseMessengerMonitorController;",
"",
"#[Route('/admin/messenger')]",
"#[IsGranted('ROLE_ADMIN')]",
"class MessengerMonitorController extends BaseMessengerMonitorController",
"{",
"}",
""
],
"executable": false
},
"src/Entity/ProcessedMessage.php": {
"contents": [
"<?php",
"",
"namespace App\\Entity;",
"",
"use Zenstruck\\Messenger\\Monitor\\History\\Model\\ProcessedMessage as BaseProcessedMessage;",
"use Doctrine\\ORM\\Mapping as ORM;",
"",
"#[ORM\\Entity(readOnly: true)]",
"#[ORM\\Table('messenger_processed_messages')]",
"class ProcessedMessage extends BaseProcessedMessage",
"{",
" #[ORM\\Id]",
" #[ORM\\GeneratedValue]",
" #[ORM\\Column]",
" private ?int $id = null;",
"",
" public function id(): ?int",
" {",
" return $this->id;",
" }",
"}",
""
],
"executable": false
}
},
"ref": "e830a96e19aef36b23c63a4f8884fe51815f06d8"
}
}
}