composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "workerman/webman-framework",
  3. "type": "library",
  4. "keywords": [
  5. "high performance",
  6. "http service"
  7. ],
  8. "homepage": "https://www.workerman.net",
  9. "license": "MIT",
  10. "description": "High performance HTTP Service Framework.",
  11. "authors": [
  12. {
  13. "name": "walkor",
  14. "email": "walkor@workerman.net",
  15. "homepage": "https://www.workerman.net",
  16. "role": "Developer"
  17. }
  18. ],
  19. "support": {
  20. "email": "walkor@workerman.net",
  21. "issues": "https://github.com/walkor/webman/issues",
  22. "forum": "https://wenda.workerman.net/",
  23. "wiki": "https://doc.workerman.net/",
  24. "source": "https://github.com/walkor/webman-framework"
  25. },
  26. "require": {
  27. "php": ">=7.2",
  28. "ext-json": "*",
  29. "workerman/workerman": "^4.0.4 || ^5.0.0",
  30. "nikic/fast-route": "^1.3",
  31. "psr/container": ">=1.0"
  32. },
  33. "suggest": {
  34. "ext-event": "For better performance. "
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Webman\\": "./src",
  39. "support\\": "./src/support",
  40. "Support\\": "./src/support",
  41. "Support\\Bootstrap\\": "./src/support/bootstrap",
  42. "Support\\Exception\\": "./src/support/exception",
  43. "Support\\View\\": "./src/support/view"
  44. }
  45. },
  46. "minimum-stability": "dev"
  47. }