```
<?php
return array(
'name' => 'demo模块',
'describe' => '一个demo模块的介绍',
'author' => 'Xven',
'site' => 'http://www.zhiyuecms.com',
'email' => '270988107@qq.com',
'version' => '1.0.0',
'adaptation' => '1.0.0',
'need_module' => [],
'need_plugin' => [],
'tags' => [],
'tables' => [],
);
```
> 如有sql数据库,请填写tables,填写数据库表名,不然无法安装sql文件
```
'tables' => [
'表名1',
'表名2',
],
```
配置参数:
| 参数 | 注释 | 类型 | 必填 |
| --- | --- | --- | --- |
| name | 模块名称 | string | 是 |
| describe | 模块简介 | string | 否 |
| author | 模块作者 | string | 否 |
| site| 作者地址 | string | 否 |
| email | 作者邮箱 | string | 否 |
| version | 版本号 | string | 是 |
| adaptation | 适配最低yzncms版本 | string | 是 |
| need\_module | 模块依赖 | array | 否 |
| need\_plugin | 插件依赖 | array | 否 |
| tables | 数据表,请加表前缀zy\_ | array | 否 |