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.
 
 

19 lines
650 B

<?php
declare(strict_types=1);
return [
'debug' => env('CCB_DEBUG', false),
'pymd_cd' => env('CCB_PYMD_CD', ''),
'mkt_id' => env('CCB_MKT_ID', ''),
'merchant_id' => env('CCB_MERCHANT_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',
],
];