<?php12return [3/*4|--------------------------------------------------------------------------5| Third Party Services6|--------------------------------------------------------------------------7|8| This file is for storing the credentials for third party services such9| as Mailgun, Postmark, AWS and more. This file provides the de facto10| location for this type of information, allowing packages to have11| a conventional file to locate the various service credentials.12|13*/1415'postmark' => [16'token' => env('POSTMARK_TOKEN'),17],1819'ses' => [20'key' => env('AWS_ACCESS_KEY_ID'),21'secret' => env('AWS_SECRET_ACCESS_KEY'),22'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),23],2425'resend' => [26'key' => env('RESEND_KEY'),27],2829'slack' => [30'notifications' => [31'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),32'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),33],34],35];363738