composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "require-dev": {
  22. "malukenho/docheader": "^0.1.6",
  23. "mockery/mockery": "^1.0",
  24. "phpunit/phpunit": "^7.0.0",
  25. "friendsofphp/php-cs-fixer": "^2.9"
  26. },
  27. "suggest": {
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Hyperf\\Memory\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. }
  37. },
  38. "config": {
  39. "sort-packages": true
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "2.0-dev"
  44. },
  45. "hyperf": {
  46. "config": "Hyperf\\Memory\\ConfigProvider"
  47. }
  48. },
  49. "bin": [
  50. ],
  51. "scripts": {
  52. "cs-fix": "php-cs-fixer fix $1",
  53. "test": "phpunit --colors=always"
  54. }
  55. }