首次提交

This commit is contained in:
技术老胡
2024-08-21 11:25:57 +08:00
parent e5dc4d5b6b
commit 4eecbfcd3c
831 changed files with 308101 additions and 25 deletions

View File

@@ -0,0 +1,33 @@
<?php
// +----------------------------------------------------------------------
// | 支付监听配置,一个文件,一个账号
// +----------------------------------------------------------------------
return [
// 用户账号配置
'user' => [
'pid' => 1001,
'key' => '7ImzF6Rf8OciQcmRJv8oTNBwIp6uqF0p'
],
// 收款平台账号配置
'pay' => [
// 账号id
'aid' => 1,
// 收款平台
'platform' => 'sqbpay',
// 账号
'account' => '18872410423',
// 密码
'password' => '7698177hcnSQB',
// 订单查询参数配置
'query' => array (
'date_end' => NULL,
'date_start' => NULL,
'page' => 1,
'page_size' => 10,
'upayQueryType' => 0,
'status' => '2000',
'store_sn' => '1580000008493827',
'type' => '30',
),
]
];