pay.php 474 B

1234567891011121314151617
  1. <?php
  2. // 支付配置
  3. return [
  4. 'fastPay' => [
  5. 'pay_url' => 'https://api.fastpag.com',
  6. 'appID' => '',
  7. 'secretKey' => '',
  8. 'payFastKey' => '',
  9. 'notify' => env('APP_URL', '').'/api/fastpay/notify',
  10. 'syncNotify' =>env('APP_URL', '').'/api/fastpay/sync_notify',
  11. 'cashierNotify' => env('APP_URL', '').'/api/fastpay/cash_notify',
  12. 'agentCashierNotify' => env('APP_URL', '').'/api/fastpay/cash_notify',
  13. ],
  14. ];