Files
fast/composer.json
xiadc ac0777e34b feat(游戏模块): 重构比赛逻辑并添加赛制支持
- 移除了原有的比赛时间检查逻辑
- 引入了赛制类文件,实现了比赛自动编排功能
- 新增了 GameMatch 模型用于存储比赛对阵信息
- 优化了数据库事务处理逻辑
- 更新了 Composer 自动加载配置,添加 format 命名空间
2025-05-23 17:37:48 +08:00

59 lines
1.6 KiB
JSON

{
"name": "fastadminnet/fastadmin",
"description": "the fastest admin framework",
"type": "project",
"keywords": [
"fastadmin",
"thinkphp"
],
"homepage": "https://www.fastadmin.net/",
"license": "Apache-2.0",
"authors": [
{
"name": "Karson",
"email": "karson@fastadmin.net"
}
],
"require": {
"php": ">=7.4.0",
"topthink/framework": "dev-master",
"topthink/think-captcha": "^1.0.9",
"topthink/think-installer": "^1.0.14",
"topthink/think-queue": "1.1.6",
"topthink/think-helper": "^1.0.7",
"fastadminnet/fastadmin-addons": "~1.4.0",
"fastadminnet/fastadmin-mailer": "^2.0.0",
"overtrue/pinyin": "^3.0",
"phpoffice/phpspreadsheet": "^1.29.1",
"overtrue/wechat": "^4.6",
"ext-json": "*",
"ext-curl": "*",
"ext-pdo": "*",
"ext-bcmath": "*",
"workerman/phpsocket.io": "^2.2"
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"topthink/think-installer": true,
"easywechat-composer/easywechat-composer": true
}
},
"autoload": {
"psr-4": {
"addons\\": "addons/",
"format\\": "format/"
}
},
"repositories": [
{
"type": "git",
"url": "https://gitee.com/fastadminnet/framework.git"
},
{
"type": "git",
"url": "https://gitee.com/fastadminnet/think-captcha.git"
}
]
}