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.

16 lines
548 B

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