composer.json 935 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "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. },
  21. "autoload": {
  22. "psr-4": {
  23. "Hyperf\\Memory\\": "src/"
  24. }
  25. },
  26. "autoload-dev": {
  27. "psr-4": {}
  28. },
  29. "config": {
  30. "sort-packages": true
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "3.1-dev"
  35. },
  36. "hyperf": {
  37. "config": "Hyperf\\Memory\\ConfigProvider"
  38. }
  39. }
  40. }