Skip to content

Commit

Permalink
Remove Stripe config settings
Browse files Browse the repository at this point in the history
These now ship with a dedicated config file for Cashier.

laravel/laravel@83d2ecc
laravel/laravel@bb43372
  • Loading branch information
realodix committed Aug 15, 2019
1 parent f73b88f commit 9934235
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions config/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Stripe, Mailgun, SparkPost and others. This file provides a sane
| default location for this type of information, allowing packages
| to have a conventional place to find your various credentials.
| as Mailgun, SparkPost and others. This file provides a sane default
| location for this type of information, allowing packages to have
| a conventional file to locate the various service credentials.
|
*/

Expand All @@ -34,14 +34,4 @@
'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),
],
],

];

0 comments on commit 9934235

Please sign in to comment.