composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "hyperf/devtool",
  3. "description": "A Devtool for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "devtool"
  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. "hyperf/command": "~2.2.0",
  21. "hyperf/contract": "~2.2.0",
  22. "hyperf/di": "~2.2.0",
  23. "hyperf/utils": "~2.2.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Hyperf\\Devtool\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "HyperfTest\\Devtool\\": "tests/"
  33. }
  34. },
  35. "config": {
  36. "sort-packages": true
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "2.2-dev"
  41. },
  42. "hyperf": {
  43. "config": "Hyperf\\Devtool\\ConfigProvider"
  44. }
  45. }
  46. }