CRM/vendor/workerman/coroutine/composer.json
2025-03-11 13:34:12 +08:00

32 lines
592 B
JSON

{
"name": "workerman/coroutine",
"type": "library",
"license": "MIT",
"description": "Workerman coroutine",
"require": {
"php": ">=8.1"
},
"autoload": {
"psr-4": {
"Workerman\\Coroutine\\": "src",
"Workerman\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"psr/log": "*"
},
"autoload-dev": {
"psr-4": {
"Workerman\\Coroutine\\": "src",
"Workerman\\": "src",
"tests\\": "tests"
}
},
"scripts": {
"test": "php tests/start.php start"
},
"minimum-stability": "dev",
"prefer-stable": true
}