Files
kiri-core/composer.json
T

56 lines
1.2 KiB
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": "*",
2020-10-09 16:34:33 +08:00
"amphp/amp": "v1.2.2",
2020-10-28 11:58:51 +08:00
"psr/log": "1.*",
"ext-sockets": "*",
"ext-pcntl": "*",
"ext-posix": "*",
2021-05-04 03:31:44 +08:00
"ext-gd": "*",
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",
"psr/link": "^2.0",
"psr/cache": "^3.0",
"psr/http-client": "^1.0",
"psr/simple-cache": "^1.0",
2021-08-26 15:43:00 +08:00
"game-worker/kiri-event": "v1.0"
2020-08-31 12:38:32 +08:00
},
"autoload": {
"psr-4": {
2021-08-24 18:10:07 +08:00
"Kiri\\": "core/",
2021-08-17 16:43:50 +08:00
"Http\\": "http-helper/",
2021-08-24 18:24:46 +08:00
"Server\\": "http-server/",
"Console\\": "kiri-console/",
"Gii\\": "kiri-gii/",
"Annotation\\": "note/"
2020-08-31 12:38:32 +08:00
},
"files": [
"error.php",
"function.php"
]
2020-10-28 11:58:51 +08:00
},
"require-dev": {
2020-08-31 12:38:32 +08:00
}
2020-08-31 01:27:42 +08:00
}