Files
littleTiger/plugins/payment/miniAppPay/config.php

17 lines
973 B
PHP
Raw Normal View History

2019-02-28 19:48:21 +08:00
<?php
return array(
'code'=> 'miniAppPay',
'name' => '微信小程序支付',
'version' => '1.0',
'author' => 'lhb',
'desc' => '微信小程序支付信息',
'icon' => 'logo.jpg',
'scene' => 4, // 使用场景 0 PC+手机 1 手机 2 PC ,3 APP, 4,小程序
'config' => array(
array('name' => 'appid','label'=>'绑定支付的APPID','type' => 'text', 'value' => '','hint'=>''), // * APPID绑定支付的APPID必须配置
array('name' => 'mchid', 'label'=>'商户号', 'type' => 'text', 'value' => ''), // * MCHID商户号必须配置开户邮件中可查看
array('name' => 'key', 'label'=>'商户支付密钥', 'type' => 'text', 'value' => ''),// KEY商户支付密钥参考开户邮件设置必须配置
array('name' => 'appsecret', 'label'=>'小程序secret', 'type' => 'text', 'value' => ''),// 小程序secert必须配置登录和支付时使用)
),
);