composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "hyperf/dispatcher",
  3. "description": "A HTTP Server for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "dispatcher",
  10. "middleware",
  11. "filter"
  12. ],
  13. "homepage": "https://hyperf.io",
  14. "support": {
  15. "docs": "https://hyperf.wiki",
  16. "issues": "https://github.com/hyperf/hyperf/issues",
  17. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  18. "source": "https://github.com/hyperf/hyperf"
  19. },
  20. "require": {
  21. "php": ">=7.2",
  22. "psr/container": "^1.0|^2.0",
  23. "psr/http-server-middleware": "^1.0",
  24. "psr/http-message": "^1.0",
  25. "hyperf/contract": "~2.2.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Hyperf\\Dispatcher\\": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "HyperfTest\\Dispatcher\\": "tests/"
  35. }
  36. },
  37. "config": {
  38. "sort-packages": true
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "2.2-dev"
  43. },
  44. "hyperf": {
  45. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  46. }
  47. }
  48. }