chore(config): remove BaseAuth app config dependency

Made-with: Cursor
This commit is contained in:
apple
2026-04-29 17:17:50 +08:00
parent f89f33c50c
commit 02bdc41ff8
2 changed files with 28 additions and 4 deletions

View File

@@ -13,8 +13,6 @@
// | 应用设置
// +----------------------------------------------------------------------
use crmeb\basic\BaseAuth;
return [
// 应用地址
'app_host' => env('HOST', ''),
@@ -42,6 +40,6 @@ return [
'error_message' => '页面错误!请稍后再试~',
// 显示错误信息
'show_error_msg' => false,
// 授权密钥
'auth_crmeb' => BaseAuth::AUTH_CRMEB
// 自有项目不读取 CRMEB 原厂授权密钥;商业模块如需使用仍应走合法授权。
'auth_crmeb' => ''
];