Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 451 Bytes

UPGRADING.md

File metadata and controls

12 lines (8 loc) · 451 Bytes

From v2 to v3

  • add a migration to add url and headers columns to the webhook_calls table.
$table->string('url');
$table->json('headers')->nullable();
  • add a key store_headers to each entry in configs of the webhook-client config file. See the default config file for an example.

  • the Spatie\WebhookClient\Events\InvalidSignature event has been renamed to Spatie\WebhookClient\Events\InvalidWebhookSignatureEvent