composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "hyperf/devtool",
  3. "description": "A Devtool for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "dev",
  7. "php",
  8. "swoole",
  9. "hyperf",
  10. "devtool"
  11. ],
  12. "homepage": "https://hyperf.io",
  13. "support": {
  14. "docs": "https://hyperf.wiki",
  15. "issues": "https://github.com/hyperf/hyperf/issues",
  16. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  17. "source": "https://github.com/hyperf/hyperf"
  18. },
  19. "require": {
  20. "php": ">=8.1",
  21. "hyperf/code-parser": "~3.1.0",
  22. "hyperf/command": "~3.1.0",
  23. "hyperf/contract": "~3.1.0",
  24. "hyperf/di": "~3.1.0",
  25. "hyperf/support": "~3.1.0",
  26. "hyperf/utils": "~3.1.0"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Hyperf\\Devtool\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "HyperfTest\\Devtool\\": "tests/"
  36. }
  37. },
  38. "config": {
  39. "sort-packages": true
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "3.1-dev"
  44. },
  45. "hyperf": {
  46. "config": "Hyperf\\Devtool\\ConfigProvider"
  47. }
  48. }
  49. }