Skip to content

Configuration

nilnice edited this page Mar 2, 2018 · 3 revisions

支付参数配置

<?php

return [

    // 支付宝支付配置
    'alipay' => [
        // 应用 ID
        'app_id'      => '',

        // 同步通知地址
        'return_url'  => 'http(s)://xxx.xxx.xxx/path/to/alireturn.php',

        // 异步通知地址
        'notify_url'  => 'http(s)://xxx.xxx.xxx/path/to/alinotify.php',

        // 支付宝公钥
        'public_key'  => '',

        // 商户私钥
        'private_key' => '',

        // 日志
        'log'         => [
            'file'  => './logs/alipay.log',
            'level' => 'debug',
        ],

        // 运行环境(正式环境:pro、沙箱环境:dev)
        'env'         => 'pro',
    ],

    // 微信支付配置
    'wechat' => [
        // 应用 ID
        'app_id'     => 'wxxxx...',

        // APP APPID

        // 由于微信支付 APP 支付商户和公众号支付商户不能互用,故需要独立配置 APP 支付
        'app_appid'  => 'wxxxx...',
        'app_mchid'  => '',
        'app_key'    => '',

        // 公众号 APPID
        'pub_appid'  => 'wxxxx...',

        // 小程序 APPID
        'xcx_appid'  => 'wxxxx...',

        // 微信支付商户 ID(微信支付平台 -> 账户中心 -> 账户设置 -> 商户信息 -> 基本账户信息)
        'mch_id'     => '',

        // 微信支付 API 密钥(微信支付平台 -> 账户中心 -> 账户设置 -> API 安全 -> API 密钥)
        'key'        => '',

        // 返回地址
        'return_url' => 'http(s)://xxx.xxx.xxx/path/to/wxreturn.php',

        // 回调地址
        'notify_url' => 'http(s)://xxx.xxx.xxx/path/to/wxnotify.php',

        // 日志
        'log'        => [
            'file'  => './logs/wxpay.log',
            'level' => 'debug',
        ],

        // 运行环境(正式环境:pro、沙箱环境:dev)
        'env'        => 'pro',
    ],
];
Clone this wiki locally