composer.json 944 B

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