67 lines
2.3 KiB
PHP
67 lines
2.3 KiB
PHP
<?php
|
|
|
|
$robokassaMode = env('ROBOKASSA_MODE', 'test');
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
'postmark' => [
|
|
'key' => env('POSTMARK_API_KEY'),
|
|
],
|
|
|
|
'resend' => [
|
|
'key' => env('RESEND_API_KEY'),
|
|
],
|
|
|
|
'ses' => [
|
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
|
],
|
|
|
|
'slack' => [
|
|
'notifications' => [
|
|
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
|
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
|
],
|
|
],
|
|
|
|
'robokassa' => [
|
|
'mode' => $robokassaMode,
|
|
'environments' => [
|
|
'test' => [
|
|
'login' => env('ROBOKASSA_TEST_LOGIN', env('ROBOKASSA_LOGIN')),
|
|
'password1' => env('ROBOKASSA_TEST_PASSWORD1', env('ROBOKASSA_PASSWORD1')),
|
|
'password2' => env('ROBOKASSA_TEST_PASSWORD2', env('ROBOKASSA_PASSWORD2')),
|
|
'hash_algorithm' => env('ROBOKASSA_TEST_HASH_ALGORITHM', env('ROBOKASSA_HASH_ALGORITHM', 'md5')),
|
|
],
|
|
'production' => [
|
|
'login' => env('ROBOKASSA_PRODUCTION_LOGIN'),
|
|
'password1' => env('ROBOKASSA_PRODUCTION_PASSWORD1'),
|
|
'password2' => env('ROBOKASSA_PRODUCTION_PASSWORD2'),
|
|
'hash_algorithm' => env('ROBOKASSA_PRODUCTION_HASH_ALGORITHM', 'md5'),
|
|
],
|
|
],
|
|
'payment_url' => env('ROBOKASSA_PAYMENT_URL', 'https://auth.robokassa.ru/Merchant/Index.aspx'),
|
|
'minimum_amount' => env('ROBOKASSA_MINIMUM_AMOUNT', 10),
|
|
'maximum_amount' => env('ROBOKASSA_MAXIMUM_AMOUNT', 100000),
|
|
'tears_per_ruble' => env('MOONWELL_TEARS_PER_RUBLE', 10),
|
|
],
|
|
|
|
'game_server' => [
|
|
'balance_api_token' => env('GAME_SERVER_BALANCE_API_TOKEN'),
|
|
],
|
|
|
|
];
|