add dev packages, caps Log util, add tools config

This commit is contained in:
2025-11-10 16:49:05 +08:00
parent 08bb2af2c3
commit 299c831e82
5 changed files with 110 additions and 62 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
use function Hyperf\Support\env;
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
return [
'debug' => false,
'host' => env('TOOLS_HOST', 'http://127.0.0.1'),
'host_test' => env('TOOLS_HOST', 'http://127.0.0.1'),
'token' => env('TOOLS_TOKEN', ''),
'token_test' => env('TOOLS_TOKEN', '')
];