123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "name": "hyperf/coroutine",
- "description": "Hyperf Coroutine",
- "license": "MIT",
- "keywords": [
- "php",
- "swoole",
- "hyperf",
- "coroutine"
- ],
- "homepage": "https://hyperf.io",
- "support": {
- "docs": "https://hyperf.wiki",
- "issues": "https://github.com/hyperf/hyperf/issues",
- "pull-request": "https://github.com/hyperf/hyperf/pulls",
- "source": "https://github.com/hyperf/hyperf"
- },
- "require": {
- "php": ">=8.1",
- "hyperf/context": "~3.1.0",
- "hyperf/contract": "~3.1.0",
- "hyperf/engine": "^2.0"
- },
- "autoload": {
- "psr-4": {
- "Hyperf\\Coroutine\\": "src/"
- },
- "files": [
- "src/Functions.php"
- ]
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\Coroutine\\": "tests/"
- }
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- }
- }
- }
|