Anyon e634118a22 refactor(plugin): 迁移 v8 插件化组件体系
将 v6 中直接放在本地 app 的后台与微信能力迁移为 v8 插件组件,并把运行时基础能力沉淀到独立插件包。

主要内容:

- 新增 think-library、system、worker、static、install 等基础插件包。

- 新增 account、payment、wechat-client、wechat-service、wemall、wuma 等业务插件包。

- 移除 v6 的 app/admin 与 app/wechat 本地应用实现,改由插件分发接管。

- 将 Helper 能力彻底并入 System,统一为 plugin\system\helper\* 命名空间。

- 同步插件迁移发布清单与根 route 占位,保证安装发布流程可复现。
2026-05-08 15:30:46 +08:00

61 lines
1.2 KiB
JSON

{
"name": "zoujingli/think-library",
"version": "8.0.x-dev",
"license": "MIT",
"homepage": "https://thinkadmin.top",
"description": "Library for ThinkAdmin",
"authors": [
{
"name": "Anyon",
"email": "zoujingli@qq.com"
}
],
"support": {
"email": "zoujingli@qq.com",
"wiki": "https://thinkadmin.top",
"forum": "https://thinkadmin.top",
"source": "https://gitee.com/zoujingli/ThinkLibrary",
"issues": "https://gitee.com/zoujingli/ThinkLibrary/issues"
},
"require": {
"php": "^8.1",
"ext-gd": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-zlib": "*",
"ext-iconv": "*",
"ext-openssl": "*",
"ext-mbstring": "*",
"topthink/think-orm": "^4.0",
"topthink/framework": "^8.1"
},
"autoload": {
"files": [
"src/common.php"
],
"psr-4": {
"think\\admin\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5|^10.0"
},
"autoload-dev": {
"psr-4": {
"think\\admin\\tests\\": "tests"
}
},
"extra": {
"think": {
"services": [
"think\\admin\\Library"
]
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true
}
}