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