composer.json 1.4 KB

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