composer.json 905 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "hyperf/context",
  3. "description": "A coroutine context library.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "context"
  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": ">=7.2",
  20. "hyperf/engine": "^1.1"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "Hyperf\\Context\\": "src/"
  25. }
  26. },
  27. "autoload-dev": {
  28. "psr-4": {
  29. "HyperfTest\\Context\\": "tests/"
  30. }
  31. },
  32. "config": {
  33. "sort-packages": true
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "2.2-dev"
  38. }
  39. }
  40. }