mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-06-07 20:48:09 +08:00
Replace header text "Payment Plugin for ThinkAdmin" with "ThinkAdmin Plugin for ThinkAdmin" across project files (configs, controllers, plugins, php-cs-fixer, etc.) to unify branding. Add a new composer script "rewrite-model" to regenerate models and run php-cs-fixer. Also apply a minor newline fix in .copilot-commit-message-instructions.md.
111 lines
2.2 KiB
JSON
111 lines
2.2 KiB
JSON
{
|
|
"type": "project",
|
|
"name": "zoujingli/thinkadmin",
|
|
"license": "MIT",
|
|
"homepage": "https://thinkadmin.top",
|
|
"description": "Application Development Framework",
|
|
"keywords": [
|
|
"ThinkAdmin",
|
|
"ThinkLibrary",
|
|
"WeChatDeveloper"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Anyon",
|
|
"email": "zoujingli@qq.com"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"app\\index\\": "app/index/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">7.1",
|
|
"ext-gd": "*",
|
|
"ext-json": "*",
|
|
"ext-openssl": "*",
|
|
"zoujingli/think-plugs-account": "*",
|
|
"zoujingli/think-plugs-admin": "*",
|
|
"zoujingli/think-plugs-center": "*",
|
|
"zoujingli/think-plugs-payment": "*",
|
|
"zoujingli/think-plugs-wechat": "*",
|
|
"zoujingli/think-plugs-wechat-service": "*",
|
|
"zoujingli/think-plugs-wemall": "*",
|
|
"zoujingli/think-plugs-worker": "*",
|
|
"zoujingli/think-plugs-wuma": "*"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^3.0",
|
|
"zoujingli/think-plugs-helper": "*"
|
|
},
|
|
"scripts": {
|
|
"sync": [
|
|
"php-cs-fixer fix"
|
|
],
|
|
"rewrite-model": [
|
|
"@php think xadmin:helper:model --reset",
|
|
"php-cs-fixer fix"
|
|
],
|
|
"test": [
|
|
"php -m"
|
|
]
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-wuma"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-helper"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-worker"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-wechat"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-wechat-service"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-admin"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-center"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-account"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-payment"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-wemall"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-plugs-static"
|
|
},
|
|
{
|
|
"type": "path",
|
|
"url": "plugin/think-library"
|
|
}
|
|
],
|
|
"minimum-stability": "dev",
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"zoujingli/think-install": true
|
|
}
|
|
}
|
|
} |