Files
kiri-core/composer.json
T

56 lines
1.3 KiB
JSON
Raw Normal View History

2022-01-09 03:50:38 +08:00
{
"name": "game-worker/kiri-core",
"description": "test framework",
"authors": [
{
"name": "XiangLin",
"email": "as2252258@163.com"
}
],
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-curl": "*",
"ext-openssl": "*",
"symfony/console": "~v5.3.10",
"psr/log": "1.*",
"composer-runtime-api": "^2.0",
"psr/container": "^2.0",
"psr/http-server-middleware": "1.0.1",
2022-07-11 16:34:13 +08:00
"ext-pcntl": "*",
"ext-sockets": "*"
2022-01-09 03:50:38 +08:00
},
2023-04-06 17:08:47 +08:00
"replace": {
"symfony/polyfill-apcu": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php81": "*"
},
2022-01-09 03:50:38 +08:00
"autoload": {
"psr-4": {
"Kiri\\": "kiri-engine/",
2022-10-11 14:33:33 +08:00
"Kiri\\Actor\\": "kiri-actor/",
2022-01-09 03:50:38 +08:00
"Kiri\\Annotation\\": "kiri-annotation/",
2023-03-30 23:10:14 +08:00
"Kiri\\Task\\": "kiri-task/",
"Kiri\\Websocket\\": "kiri-websocket-server/"
2022-01-09 03:50:38 +08:00
},
"files": [
2022-01-12 14:10:33 +08:00
"Kiri.php",
2022-06-22 16:29:42 +08:00
"ReturnTypeWillChange.php",
2022-01-09 03:50:38 +08:00
"function.php"
]
}
}