32 lines
592 B
JSON
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
|
|
}
|