You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.0 KiB
23 lines
1.0 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | thinkphp6 Addons [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016 http://www.zzstudio.net All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Byron Sampson <xiaobo.sun@qq.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
return [
|
|
// 是否自动读取取插件钩子配置信息
|
|
'autoload' => true,
|
|
// 当关闭自动获取配置时需要手动配置hooks信息
|
|
'hooks' => [
|
|
// 可以定义多个钩子
|
|
'testhook' => 'test' // 键为钩子名称,用于在业务中自定义钩子处理,值为实现该钩子的插件,
|
|
// 多个插件可以用数组也可以用逗号分割
|
|
],
|
|
'route' => [],
|
|
'service' => [],
|
|
];
|