File: /www/wwwroot/www.fpngv.com/application/pay/info.php
<?php
// +----------------------------------------------------------------------
// | Yzncms [ 御宅男工作室 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2018 http://yzncms.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 御宅男 <530765310@qq.com>
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | 支付模块信息文件
// +----------------------------------------------------------------------
return array(
//模块名称[必填]
'name' => '支付模块',
//模块简介[选填]
'introduce' => '支付宝和微信支付模块!',
//模块作者[选填]
'author' => 'yzncms',
//作者地址[选填]
'authorsite' => 'http://www.yzncms.com',
//作者邮箱[选填]
'authoremail' => '530765310@qq.com',
//版本号,请不要带除数字外的其他字符[必填]
'version' => '1.0.0',
//适配最低yzncms版本[必填]
'adaptation' => '1.0.0',
//签名[必填]
'sign' => 'b803d6de0bf866df8350ca074efdd02e',
//依赖模块
'need_module' => [
['member', '1.0.0'],
],
//依赖插件
'need_plugin' => [],
//缓存,格式:缓存key=>array('module','model','action')
'cache' => [
'Pay_Config' => [
'name' => '支付配置',
'model' => 'Payment',
'action' => 'pay_cache',
],
],
// 数据表,不要加表前缀[有数据库表时必填]
'tables' => [
'pay_account',
'pay_payment',
'pay_spend',
],
);