composer.json 913 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "hyperf/macroable",
  3. "description": "Hyperf Macroable package which come from illuminate/macroable",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "macroable"
  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.3"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Hyperf\\Macroable\\": "src/"
  24. }
  25. },
  26. "autoload-dev": {
  27. "psr-4": {
  28. "HyperfTest\\Macroable\\": "tests/"
  29. }
  30. },
  31. "config": {
  32. "sort-packages": true
  33. },
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "2.2-dev"
  37. }
  38. }
  39. }