composer.json 886 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "hyperf/memory",
  3. "description": "An independent component that use to operate and manage memory.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "memory"
  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. },
  21. "autoload": {
  22. "psr-4": {
  23. "Hyperf\\Memory\\": "src/"
  24. }
  25. },
  26. "config": {
  27. "sort-packages": true
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "3.1-dev"
  32. },
  33. "hyperf": {
  34. "config": "Hyperf\\Memory\\ConfigProvider"
  35. }
  36. }
  37. }