ThinkAdmin/public/index.php
Anyon f891251e54 chore(repo): 初始化 v8 项目基础配置
将 v8 分支需要的仓库级配置、Composer 依赖、CI 脚本和入口文件一次性整理到目标仓库。

主要内容:

- 更新 composer.json,切换到 v8 插件化依赖与本地 path 仓库。

- 同步 .gitignore、代码风格、发布脚本和 GitHub Actions 配置。

- 调整 config、think、public 入口和默认 index 控制器以适配 v8 运行结构。

- 清理 v6 遗留的根级 license/security 文件,由组件文档和仓库说明统一承载。
2026-05-08 15:30:32 +08:00

27 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare(strict_types=1);
/**
* // +----------------------------------------------------------------------
* // | ThinkAdmin Web Entry
* // +----------------------------------------------------------------------
* // | 版权所有 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
* // +----------------------------------------------------------------------
*/
use think\admin\service\RuntimeService;
// 加载基础文件
require __DIR__ . '/../vendor/autoload.php';
// WEB应用初始化
RuntimeService::doWebsiteInit();