composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "hyperf/coroutine",
  3. "description": "Hyperf Coroutine",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "coroutine"
  10. ],
  11. "homepage": "https://hyperf.io",
  12. "support": {
  13. "docs": "https://hyperf.wiki",
  14. "issues": "https://github.com/hyperf/hyperf/issues",
  15. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  16. "source": "https://github.com/hyperf/hyperf"
  17. },
  18. "require": {
  19. "php": ">=8.1",
  20. "hyperf/context": "~3.1.0",
  21. "hyperf/contract": "~3.1.0",
  22. "hyperf/engine": "^2.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Hyperf\\Coroutine\\": "src/"
  27. },
  28. "files": [
  29. "src/Functions.php"
  30. ]
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "HyperfTest\\Coroutine\\": "tests/"
  35. }
  36. },
  37. "config": {
  38. "sort-packages": true
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "3.1-dev"
  43. }
  44. }
  45. }