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

View File

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