mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-06-07 04:28:11 +08:00
将 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 占位,保证安装发布流程可复现。
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"type": "composer-plugin",
|
|
"name": "zoujingli/think-plugs-install",
|
|
"version": "8.0.x-dev",
|
|
"license": "MIT",
|
|
"homepage": "https://thinkadmin.top",
|
|
"description": "Composer-driven install workflow for ThinkAdmin",
|
|
"authors": [
|
|
{
|
|
"name": "Anyon",
|
|
"email": "zoujingli@qq.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"composer-plugin-api": "^2.6",
|
|
"php": "^8.1",
|
|
"topthink/framework": "^8.1",
|
|
"zoujingli/think-library": "^8.0",
|
|
"zoujingli/think-plugs-system": "^8.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"plugin\\install\\": "src"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.0"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"plugin\\install\\tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"class": "plugin\\install\\composer\\Plugin",
|
|
"think": {
|
|
"services": [
|
|
"plugin\\install\\Service"
|
|
]
|
|
},
|
|
"xadmin": {
|
|
"app": {
|
|
"name": "安装工具",
|
|
"description": "提供 Composer 安装链路与显式安装入口,统一执行服务发现、资源发布与按需数据库迁移。",
|
|
"code": "install",
|
|
"prefix": "install"
|
|
}
|
|
}
|
|
},
|
|
"prefer-stable": true,
|
|
"minimum-stability": "dev",
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|