LaravelTest
34 строки · 973.0 Байт
1<?php
2
3return [
4
5/*
6|--------------------------------------------------------------------------
7| Third Party Services
8|--------------------------------------------------------------------------
9|
10| This file is for storing the credentials for third party services such
11| as Mailgun, Postmark, AWS and more. This file provides the de facto
12| location for this type of information, allowing packages to have
13| a conventional file to locate the various service credentials.
14|
15*/
16
17'postmark' => [
18'token' => env('POSTMARK_TOKEN'),
19],
20
21'ses' => [
22'key' => env('AWS_ACCESS_KEY_ID'),
23'secret' => env('AWS_SECRET_ACCESS_KEY'),
24'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
25],
26
27'slack' => [
28'notifications' => [
29'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
30'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
31],
32],
33
34];
35