Files
YwxAppThink/addon/wxchat/info.php
T

54 lines
1.6 KiB
PHP

<?php
/*
* @Author: YwxApp <ywx@ywxapp.cn>
* @Date: 2026-07-09 14:20:05
* @LastEditors: YwxApp <ywx@ywxapp.cn>
* @LastEditTime: 2026-08-10 01:08:10
* @Description:
* @FilePath: \ywxapp_dev\addon\wxchat\info.php
* @CustomString: Copyright (c) 2026 YwxApp
*/
// +----------------------------------------------------------------------
// | YwxApp [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: ywxapp<admin@ywxapp.cn>
// +----------------------------------------------------------------------
// 这是系统自动生成的config定义文件
return [
'name' => 'wxchat',
'title' => '聊天应用',
'intro' => '',
'author' => '',
'website' => '',
'version' => '1.0.1',
'state' => 0,
'url' => '/wxchat',
'license' => '',
'licenseto' => 0,
'config' => [],
'events' => [
'bind' => [
//'UserLogin' => 'app\event\UserLogin',
// 更多事件绑定
],
'listen' => [
// 'UserLogin' => ['app\listener\UserLogin'],
// 更多事件监听
],
'subscribe' => [
'member' => 'addon\wxchat\subscribe\User',
// 更多事件订阅
],
],
'middleware' => [
\addon\wxchat\middleware\AppVersionCheck::class,
],
'services' => [
\addon\wxchat\service\Service::class,
],
];