xxxrrrdddd 3 年之前
父节点
当前提交
b0889794eb
共有 3 个文件被更改,包括 18 次插入1 次删除
  1. 15 0
      application/common.php
  2. 2 0
      application/extra/site.php
  3. 1 1
      composer.json

+ 15 - 0
application/common.php

@@ -2,6 +2,7 @@
 
 // 公共助手函数
 
+use EasyWeChat\Factory;
 use Symfony\Component\VarExporter\VarExporter;
 use think\exception\HttpResponseException;
 use think\Response;
@@ -481,3 +482,17 @@ if (!function_exists('check_ip_allowed')) {
         }
     }
 }
+
+function payment(){
+    $config = [
+        // 必要配置
+        'app_id'             => 'xxxx',
+        'mch_id'             => 'your-mch-id',
+        'key'                => 'key-for-signature',   // API 密钥
+        // 如需使用敏感接口(如退款、发送红包等)需要配置 API 证书路径(登录商户平台下载 API 证书)
+        'cert_path'          => 'path/to/your/cert.pem', // XXX: 绝对路径!!!!
+        'key_path'           => 'path/to/your/key',      // XXX: 绝对路径!!!!
+        'notify_url'         => '默认的订单回调地址',     // 你也可以在下单时单独设置来想覆盖它
+    ];
+    $app = Factory::payment($config);
+}

+ 2 - 0
application/extra/site.php

@@ -45,4 +45,6 @@ return array (
   'user_appsecret' => '11',
   'sender_appid' => '22',
   'sender_appserret' => '22',
+  'mch_id' => '',
+  'mch_secret' => '',
 );

+ 1 - 1
composer.json

@@ -24,7 +24,7 @@
         "karsonzhang/fastadmin-addons": "~1.2.4",
         "overtrue/pinyin": "^3.0",
         "phpoffice/phpspreadsheet": "1.12",
-        "overtrue/wechat": "4.2.11",
+        "overtrue/wechat": "~4.0",
         "nelexa/zip": "^3.3",
         "ext-json": "*",
         "ext-curl": "*",