marko/webhook
最新稳定版本:0.6.0
Composer 安装命令:
composer require marko/webhook
包简介
Webhook sending package for Marko Framework
README 文档
README
Send and receive webhooks with HMAC-SHA256 signature verification, automatic retry with exponential backoff, and delivery attempt tracking.
Installation
composer require marko/webhook
Quick Example
use Marko\Webhook\Sending\WebhookDispatcher; use Marko\Webhook\Value\WebhookPayload; $payload = new WebhookPayload( url: 'https://example.com/webhooks', event: 'order.created', data: ['order_id' => 42, 'total' => '99.99'], secret: 'your-shared-secret', ); $response = $webhookDispatcher->dispatch($payload);
Documentation
Full usage, API reference, and examples: marko/webhook
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-24