/
itp_practice
/
itp_backend
Обзор
Документация
Войти
/
itp_practice
/
itp_backend
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
config/services.php
62 строки
2 KB
vivanenko
add tg account creation
28 май 2025, 13:36
28 май 2025, 13:36
b84c0d8
Код
Авторство
О чём код?
<?php return [ /* |-------------------------------------------------------------------------- | Third Party Services |-------------------------------------------------------------------------- | | This file is for storing the credentials for third party services such | as Mailgun, Postmark, AWS and more. This file provides the de facto | location for this type of information, allowing packages to have | a conventional file to locate the various service credentials. | */ 'mailgun' => [ 'domain' => env('MAILGUN_DOMAIN'), 'secret' => env('MAILGUN_SECRET'), 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), 'scheme' => 'https', ], 'postmark' => [ 'token' => env('POSTMARK_TOKEN'), ], 'ses' => [ 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ], 'resend' => [ 'key' => env('RESEND_KEY'), ], 'slack' => [ 'notifications' => [ 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), ], ], 'telegram' => [ 'bot_token' => env('TELEGRAM_BOT_TOKEN'), 'bot_username' => env('TELEGRAM_BOT_USERNAME'), 'webhook_url' => env('TELEGRAM_WEBHOOK_URL'), ], 'supervisor' => [ 'url' => env('SUPERVISOR_URL', 'http://taps:9001/RPC2'), 'username' => env('SUPERVISOR_USERNAME', 'admin'), 'password' => env('SUPERVISOR_PASSWORD', 'secret'), ], 'session_creator' => [ 'url' => env('SESSION_CREATOR_URL', 'http://session-creator:8000'), 'get_query_path' => '/21f48b5f55584120b88ce04df3441e81', ], ];