| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- // 支付配置
- return [
- 'fastPay' => [
- 'pay_url' => 'https://api.fastpag.com',
- 'appID' => '',
- 'secretKey' => '',
- 'payFastKey' => '',
- 'notify' => env('APP_URL', '').'/api/fastpay/notify',
- 'syncNotify' =>env('APP_URL', '').'/api/fastpay/sync_notify',
- 'cashierNotify' => env('APP_URL', '').'/api/fastpay/cash_notify',
- 'agentCashierNotify' => env('APP_URL', '').'/api/fastpay/cash_notify',
- ],
- // 新增的支付方式配置示例(如wiwipay)
- 'WiwiPay' => [
- 'key' => 'dkr3T8645AH28d81hL5722J7v72cqt6b',
- 'mchNo' => '2025109626',
- 'apiUrl' => 'https://www.wiwiusonepay.com/api/pay/create',
- 'currency' => 'usd',
- 'wayCode' => 'cashapp',
- 'signType' => 'MD5',
- 'notify' => env('APP_URL', '').'/api/wiwipay/notify',
- 'return' => env('APP_URL', '').'/api/wiwipay/return',
- 'cashNotify' => env('APP_URL', '').'/api/wiwipay/payout_notify',
- 'cash_url' => env('APP_URL', '').'/api/payout/create'
- ]
- ];
|