cmbYouku_Api/config/cmb.php

16 lines
750 B
PHP
Raw Permalink Normal View History

2024-07-01 15:57:07 +08:00
<?php
return [
'mid' => env('cmb.mid'), // 商户号
'aid' => env('cmb.aid'), // 应用号
'merchant_sm2_pri_key' => env('cmb.sm2_pri_key'), // sm2 私钥
'merchant_sm2_pub_key' => env('cmb.sm2_cmb_pub_key'), // sm2 公钥测试
'merchant_sm2_self_pub_key' => env('cmb.sm2_pub_key'), // sm2 公钥测试
'agree_notify_url' => env('cmb.agree_notify_url'),
'pay_notify_url' => env('cmb.pay_notify_url'),
'release_notify_url' => env('cmb.release_notify_url'),
'recharge_notify_url' => env('cmb.recharge_notify_url'),
'continue_price' => env('cmb.continue_price'),
'continue_bonus' => env('cmb.continue_bonus'),
'use_bonus_mouth' => env('cmb.use_bonus_mouth'),
'product_id' => env('cmb.product_id'),
];