- add a migration to add
url
andheaders
columns to thewebhook_calls
table.
$table->string('url')->nullable();
$table->json('headers')->nullable();
-
add a key
store_headers
to each entry inconfigs
of thewebhook-client
config file. See the default config file for an example. -
the
Spatie\WebhookClient\Events\InvalidSignature
event has been renamed toSpatie\WebhookClient\Events\InvalidWebhookSignatureEvent
-
the
Spatie\WebhookClient\ProcessWebhookJob
job has been moved toSpatie\WebhookClient\Jobs\ProcessWebhookJob