Add new Stripe webhook config values

See https://github.com/laravel/cashier/pull/565
This commit is contained in:
Dries Vints 2018-10-11 18:12:19 +02:00
parent a273cea667
commit 568250557c
No known key found for this signature in database
GPG Key ID: BDD2ED2E8C8025E7
1 changed files with 4 additions and 0 deletions

View File

@ -34,6 +34,10 @@
'model' => App\User::class,
'key' => env('STRIPE_KEY'),
'secret' => env('STRIPE_SECRET'),
'webhook' => [
'secret' => env('STRIPE_WEBHOOK_SECRET'),
'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300),
],
],
];