Files
kiri-core/composer.json
T

60 lines
1.4 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": {
2023-12-12 15:35:38 +08:00
"php": ">=8.3",
2022-01-09 03:50:38 +08:00
"ext-json": "*",
"ext-fileinfo": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-curl": "*",
"ext-openssl": "*",
2023-10-24 17:22:32 +08:00
"ext-swoole": "*",
"ext-msgpack": "*",
2025-07-11 17:32:17 +08:00
"symfony/console": "~v7.3.1",
2022-01-09 03:50:38 +08:00
"psr/log": "1.*",
"composer-runtime-api": "^2.0",
"psr/http-server-middleware": "1.0.1",
2022-07-11 16:34:13 +08:00
"ext-pcntl": "*",
2023-04-19 12:35:39 +08:00
"ext-sockets": "*",
2025-07-11 17:32:17 +08:00
"nikic/php-parser": "^v5.5.0",
2023-08-02 13:03:07 +08:00
"ext-inotify": "*",
2023-08-16 00:43:40 +08:00
"game-worker/kiri-pool": "~v1.0",
2023-08-14 21:09:45 +08:00
"monolog/monolog": "^2.9",
2023-11-24 10:46:45 +08:00
"psr/container": "^2.0",
"ext-libsodium": "*",
"swiftmailer/swiftmailer": "^6.3"
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/",
2023-04-16 01:50:47 +08:00
"Kiri\\Actor\\": "kiri-actor/"
2022-01-09 03:50:38 +08:00
},
"files": [
2022-01-12 14:10:33 +08:00
"Kiri.php",
2022-01-09 03:50:38 +08:00
"function.php"
]
}
}