Implement webhook inspector

This commit is contained in:
2026-08-04 17:09:39 +02:00
parent b021836c14
commit 75d8b25b64
57 changed files with 5110 additions and 230 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
return [
'anonymous_ttl_days' => (int) env('WEBHOOK_ANONYMOUS_TTL_DAYS', 7),
'request_retention_days' => (int) env('WEBHOOK_REQUEST_RETENTION_DAYS', 7),
'max_requests_per_endpoint' => 1000,
'max_body_bytes' => 1024 * 1024,
'max_response_body_bytes' => 1024 * 1024,
'rate_limit_per_minute' => (int) env('WEBHOOK_RATE_LIMIT_PER_MINUTE', 60),
'page_size' => 25,
];