composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "hyperf/support",
  3. "description": "A support component for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "support"
  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/collection": "~3.1.0",
  21. "hyperf/context": "~3.1.0",
  22. "hyperf/contract": "~3.1.0",
  23. "hyperf/coroutine": "~3.1.0",
  24. "hyperf/macroable": "~3.1.0",
  25. "hyperf/stringable": "~3.1.0"
  26. },
  27. "suggest": {
  28. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Hyperf\\Support\\": "src/"
  33. },
  34. "files": [
  35. "src/Functions.php"
  36. ]
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "HyperfTest\\Support\\": "tests/"
  41. }
  42. },
  43. "config": {
  44. "sort-packages": true
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "3.1-dev"
  49. }
  50. }
  51. }