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.

18 lines
650 B

  1. <?php
  2. declare(strict_types=1);
  3. return [
  4. 'debug' => env('CCB_DEBUG', false),
  5. 'pymd_cd' => env('CCB_PYMD_CD', ''),
  6. 'mkt_id' => env('CCB_MKT_ID', ''),
  7. 'merchant_id' => env('CCB_MERCHANT_ID', ''),
  8. 'self_profit_ratio' => env('CCB_SELF_PROFIT_RATIO', 0),
  9. 'self_private_key' => env('CCB_SELF_PRIVATE_KEY', ''),
  10. 'bank_public_key' => env('CCB_BANK_PUBLIC_KEY', ''),
  11. 'notify_url' => [
  12. 'online' => env('SITE_HOST').'/v3/ccb/notify/pay',
  13. //'offline' => env('SITE_HOST') . '/v3/ccb/notify/offline',
  14. 'refund' => env('SITE_HOST').'/v3/ccb/notify/refund',
  15. ],
  16. ];