You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
548 B
17 lines
548 B
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'debug' => env('CCB_DEBUG', false),
|
|
'mkt_id' => env('CCB_MKT_ID', ''),
|
|
'self_profit_ratio' => env('CCB_SELF_PROFIT_RATIO', 0),
|
|
'self_private_key' => env('CCB_SELF_PRIVATE_KEY', ''),
|
|
'bank_public_key' => env('CCB_BANK_PUBLIC_KEY', ''),
|
|
|
|
'notify_url' => [
|
|
'online' => env('SITE_HOST') . '/v3/ccb/notify/pay',
|
|
//'offline' => env('SITE_HOST') . '/v3/ccb/notify/offline',
|
|
'refund' => env('SITE_HOST') . '/v3/ccb/notify/refund',
|
|
],
|
|
];
|