Browse code

initial-commit

rcraig12 authored on 11/11/2018 19:37:45
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,43 @@
1
+<?php
2
+
3
+return [
4
+
5
+    /*
6
+    |--------------------------------------------------------------------------
7
+    | Third Party Services
8
+    |--------------------------------------------------------------------------
9
+    |
10
+    | This file is for storing the credentials for third party services such
11
+    | as Stripe, Mailgun, SparkPost and others. This file provides a sane
12
+    | default location for this type of information, allowing packages
13
+    | to have a conventional place to find your various credentials.
14
+    |
15
+    */
16
+
17
+    'mailgun' => [
18
+        'domain' => env('MAILGUN_DOMAIN'),
19
+        'secret' => env('MAILGUN_SECRET'),
20
+        'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
21
+    ],
22
+
23
+    'ses' => [
24
+        'key' => env('SES_KEY'),
25
+        'secret' => env('SES_SECRET'),
26
+        'region' => env('SES_REGION', 'us-east-1'),
27
+    ],
28
+
29
+    'sparkpost' => [
30
+        'secret' => env('SPARKPOST_SECRET'),
31
+    ],
32
+
33
+    'stripe' => [
34
+        'model' => App\User::class,
35
+        'key' => env('STRIPE_KEY'),
36
+        'secret' => env('STRIPE_SECRET'),
37
+        'webhook' => [
38
+            'secret' => env('STRIPE_WEBHOOK_SECRET'),
39
+            'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300),
40
+        ],
41
+    ],
42
+
43
+];