| 12345678910111213141516171819202122232425262728293031 |
- {
- "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
- }
|