You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
61 lines
1.6 KiB
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
* The default queue that should be used to send webhook requests.
|
|
*/
|
|
'queue' => 'default',
|
|
|
|
/*
|
|
* The default http verb to use.
|
|
*/
|
|
'http_verb' => 'post',
|
|
|
|
/*
|
|
* This class is responsible for calculating the signature that will be added to
|
|
* the headers of the webhook request. A webhook client can use the signature
|
|
* to verify the request hasn't been tampered with.
|
|
*/
|
|
'signer' => \Spatie\WebhookServer\Signer\DefaultSigner::class,
|
|
|
|
/*
|
|
* This is the name of the header where the signature will be added.
|
|
*/
|
|
'signature_header_name' => 'Signature',
|
|
|
|
/*
|
|
* These are the headers that will be added to all webhook requests.
|
|
*/
|
|
'headers' => [
|
|
'Content-Type' => 'application/json',
|
|
],
|
|
|
|
/*
|
|
* If a call to a webhook takes longer that this amount of seconds
|
|
* the attempt will be considered failed.
|
|
*/
|
|
'timeout_in_seconds' => 3,
|
|
|
|
/*
|
|
* The amount of times the webhook should be called before we give up.
|
|
*/
|
|
'tries' => 3,
|
|
|
|
/*
|
|
* This class determines how many seconds there should be between attempts.
|
|
*/
|
|
'backoff_strategy' => \Spatie\WebhookServer\BackoffStrategy\ExponentialBackoffStrategy::class,
|
|
|
|
/*
|
|
* By default we will verify that the ssl certificate of the destination
|
|
* of the webhook is valid.
|
|
*/
|
|
'verify_ssl' => true,
|
|
|
|
/*
|
|
* When using Laravel Horizon you can specify tags that should be used on the
|
|
* underlying job that performs the webhook request.
|
|
*/
|
|
'tags' => [],
|
|
];
|