From 568250557cc82298a621648cc2d6f03379582196 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Thu, 11 Oct 2018 18:12:19 +0200 Subject: [PATCH] Add new Stripe webhook config values See https://github.com/laravel/cashier/pull/565 --- config/services.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/services.php b/config/services.php index 55a520e2..bb4d2ec9 100644 --- a/config/services.php +++ b/config/services.php @@ -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), + ], ], ];