Remove Stripe config settings

These now ship with a dedicated config file for Cashier.
This commit is contained in:
Dries Vints 2019-08-13 18:19:40 +02:00
parent d5691a2e6d
commit 83d2ecc0e9
No known key found for this signature in database
GPG Key ID: BDD2ED2E8C8025E7
1 changed files with 1 additions and 11 deletions

View File

@ -8,7 +8,7 @@
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| This file is for storing the credentials for third party services such | This file is for storing the credentials for third party services such
| as Stripe, Mailgun, SparkPost and others. This file provides a sane | as Mailgun, SparkPost and others. This file provides a sane
| default location for this type of information, allowing packages | default location for this type of information, allowing packages
| to have a conventional place to find your various credentials. | to have a conventional place to find your various credentials.
| |
@ -34,14 +34,4 @@
'secret' => env('SPARKPOST_SECRET'), 'secret' => env('SPARKPOST_SECRET'),
], ],
'stripe' => [
'model' => App\User::class,
'key' => env('STRIPE_KEY'),
'secret' => env('STRIPE_SECRET'),
'webhook' => [
'secret' => env('STRIPE_WEBHOOK_SECRET'),
'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300),
],
],
]; ];