composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "issues": "https://github.com/hyperf/hyperf/issues",
  14. "source": "https://github.com/hyperf/hyperf",
  15. "docs": "https://hyperf.wiki",
  16. "pull-request": "https://github.com/hyperf/hyperf/pulls"
  17. },
  18. "require": {
  19. "php": ">=8.1",
  20. "doctrine/inflector": "^2.0",
  21. "hyperf/collection": "~3.1.0",
  22. "hyperf/context": "~3.1.0",
  23. "hyperf/contract": "~3.1.0",
  24. "hyperf/coroutine": "~3.1.0",
  25. "hyperf/macroable": "~3.1.0",
  26. "hyperf/stringable": "~3.1.0"
  27. },
  28. "suggest": {
  29. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Hyperf\\Support\\": "src/"
  34. },
  35. "files": [
  36. "src/Functions.php"
  37. ]
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "HyperfTest\\Support\\": "tests/"
  42. }
  43. },
  44. "config": {
  45. "sort-packages": true
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "3.1-dev"
  50. }
  51. }
  52. }