From 83d2ecc0e9cca7ae6989134dede4a5653a19430b Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 13 Aug 2019 18:19:40 +0200 Subject: [PATCH 1/2] Remove Stripe config settings These now ship with a dedicated config file for Cashier. --- config/services.php | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/config/services.php b/config/services.php index f026b2c7..f7203e2b 100644 --- a/config/services.php +++ b/config/services.php @@ -8,7 +8,7 @@ |-------------------------------------------------------------------------- | | 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 | to have a conventional place to find your various credentials. | @@ -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), - ], - ], - ]; From bb433725483803a27f21d3b21317072610bc3e9c Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 13 Aug 2019 15:05:56 -0500 Subject: [PATCH 2/2] formatting --- config/services.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/services.php b/config/services.php index f7203e2b..8ce6cc63 100644 --- a/config/services.php +++ b/config/services.php @@ -8,9 +8,9 @@ |-------------------------------------------------------------------------- | | This file is for storing the credentials for third party services such - | as 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. | */