Merge pull request #4803 from driesvints/cashier-add-verify-webhook-config-values

[5.7] Add new Stripe webhook config values
This commit is contained in:
Taylor Otwell 2018-10-11 12:19:28 -05:00 committed by GitHub
commit c9e612f510
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

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