init
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return [
|
||||
'enable' => true,
|
||||
];
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is part of webman.
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the MIT-LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @author walkor<walkor@workerman.net>
|
||||
* @copyright walkor<walkor@workerman.net>
|
||||
* @link http://www.workerman.net/
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
return [
|
||||
Webman\Event\BootStrap::class,
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
use Webman\Event\EventListCommand;
|
||||
|
||||
return [
|
||||
EventListCommand::class
|
||||
];
|
||||
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
return [
|
||||
'enable' => true,
|
||||
'env_file' => base_path('.env'),//env文件位置设置
|
||||
'key_type' => true, //key设置:null=原样(区分大小写);true=全大写,false=全小写(全大/小写时读取时不区分)
|
||||
'on_group' => true,//分组:true=开启,false=关闭
|
||||
'read_type' => true //读取文件方式:true=parse_ini_file false=file_get_contents
|
||||
];
|
||||
Reference in New Issue
Block a user