mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-06-07 04:28:11 +08:00
将 v8 分支需要的仓库级配置、Composer 依赖、CI 脚本和入口文件一次性整理到目标仓库。 主要内容: - 更新 composer.json,切换到 v8 插件化依赖与本地 path 仓库。 - 同步 .gitignore、代码风格、发布脚本和 GitHub Actions 配置。 - 调整 config、think、public 入口和默认 index 控制器以适配 v8 运行结构。 - 清理 v6 遗留的根级 license/security 文件,由组件文档和仓库说明统一承载。
25 lines
1.1 KiB
PHP
25 lines
1.1 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
/**
|
||
* // +----------------------------------------------------------------------
|
||
* // | ThinkAdmin Public Router
|
||
* // +----------------------------------------------------------------------
|
||
* // | 版权所有 2014~2026 ThinkAdmin [ thinkadmin.top ]
|
||
* // +----------------------------------------------------------------------
|
||
* // | 官方网站: https://thinkadmin.top
|
||
* // +----------------------------------------------------------------------
|
||
* // | 开源协议 ( https://mit-license.org )
|
||
* // | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||
* // | 会员特权 ( https://thinkadmin.top/vip-introduce )
|
||
* // +----------------------------------------------------------------------
|
||
* // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||
* // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||
* // +----------------------------------------------------------------------
|
||
*/
|
||
if (is_file($_SERVER['DOCUMENT_ROOT'] . $_SERVER['SCRIPT_NAME'])) {
|
||
return false;
|
||
}
|
||
$_SERVER['SCRIPT_FILENAME'] = __DIR__ . '/index.php';
|
||
require $_SERVER['SCRIPT_FILENAME'];
|