This commit is contained in:
LayFi.de
2025-01-27 20:49:47 +08:00
commit 4f3242bca7
2745 changed files with 309418 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
<?php
return [
'enable' => true,
];
+17
View File
@@ -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,
];
+7
View File
@@ -0,0 +1,7 @@
<?php
use Webman\Event\EventListCommand;
return [
EventListCommand::class
];
+8
View File
@@ -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
];