composer.json 1020 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "hyperf/context",
  3. "description": "A coroutine/application 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": ">=8.1",
  20. "hyperf/engine": "^2.0"
  21. },
  22. "suggest": {
  23. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Hyperf\\Context\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "HyperfTest\\Context\\": "tests/"
  33. }
  34. },
  35. "config": {
  36. "sort-packages": true
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "3.1-dev"
  41. }
  42. }
  43. }