Files
kiri-core/composer.json
T

47 lines
979 B
JSON
Raw Normal View History

2020-08-31 01:27:42 +08:00
{
2021-08-26 16:03:31 +08:00
"name": "game-worker/kiri-core",
2020-08-31 12:38:32 +08:00
"description": "test framework",
"authors": [
{
"name": "XiangLin",
"email": "as2252258@163.com"
2020-08-31 01:27:42 +08:00
}
2020-08-31 12:38:32 +08:00
],
"license": "MIT",
"require": {
2020-12-15 14:11:54 +08:00
"php": ">=8.0",
2020-08-31 12:38:32 +08:00
"ext-json": "*",
"ext-fileinfo": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
2020-09-04 00:08:53 +08:00
"ext-xml": "*",
2020-09-11 20:06:06 +08:00
"ext-curl": "*",
2020-10-09 10:58:37 +08:00
"ext-openssl": "*",
2021-11-03 16:28:08 +08:00
"symfony/console": "^v5.3",
2020-10-28 11:58:51 +08:00
"psr/log": "1.*",
"ext-sockets": "*",
"ext-pcntl": "*",
"ext-posix": "*",
2021-11-03 14:56:20 +08:00
"composer-runtime-api": "^2.0",
2021-08-11 15:06:02 +08:00
"swiftmailer/swiftmailer": "^6.0",
2021-08-25 19:11:15 +08:00
"psr/container": "^2.0",
"psr/http-server-middleware": "^1.0",
2021-09-10 10:08:38 +08:00
"game-worker/kiri-event": "v1.0"
2020-08-31 12:38:32 +08:00
},
"autoload": {
"psr-4": {
2021-09-24 17:27:25 +08:00
"Kiri\\": "kiri-engine/",
2021-08-24 18:24:46 +08:00
"Gii\\": "kiri-gii/",
2021-09-24 17:22:02 +08:00
"Annotation\\": "kiri-note/"
2020-08-31 12:38:32 +08:00
},
"files": [
"error.php",
"function.php"
]
}
2020-08-31 01:27:42 +08:00
}