composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name" : "wujingke/workerman",
  3. "type" : "project",
  4. "keywords": ["workerman"],
  5. "homepage": "http://www.workerman.net",
  6. "license" : "MIT",
  7. "description": " High performance Socket server framework for network applications implemented in PHP using libevent",
  8. "authors" : [
  9. {
  10. "name" : "walkor",
  11. "email" : "walkor@workerman.net",
  12. "homepage" : "http://www.workerman.net",
  13. "role": "Developer"
  14. }
  15. ],
  16. "support" : {
  17. "email" : "walkor@workerman.net",
  18. "issues": "https://github.com/walkor/workerman/issues",
  19. "forum" : "http://wenda.workerman.net/",
  20. "wiki" : "http://doc.workerman.net/index.html",
  21. "source": "https://github.com/walkor/workerman"
  22. },
  23. "require": {
  24. "php": ">=5.3",
  25. "ext-pcntl" : "*",
  26. "ext-shmop" : "*",
  27. "ext-sockets": "*"
  28. },
  29. "suggest": {
  30. "ext-libevent": "Really it's a requirement for normal work.",
  31. "ext-sysvshm": "Really it's a requirement for normal work.",
  32. "ext-sysvmsg": "Really it's a requirement for normal work."
  33. },
  34. "bin": ["workerman/bin/workermand"]
  35. }