composer.json 874 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "cboden/ratchet"
  3. , "type": "library"
  4. , "description": "PHP WebSocket library"
  5. , "keywords": ["WebSockets", "Server", "Ratchet", "Sockets"]
  6. , "homepage": "http://socketo.me"
  7. , "license": "MIT"
  8. , "authors": [
  9. {
  10. "name": "Chris Boden"
  11. , "email": "cboden@gmail.com"
  12. , "role": "Developer"
  13. }
  14. ]
  15. , "support": {
  16. "forum": "https://groups.google.com/forum/#!forum/ratchet-php"
  17. , "issues": "https://github.com/ratchetphp/Ratchet/issues"
  18. , "irc": "irc://irc.freenode.org/reactphp"
  19. }
  20. , "autoload": {
  21. "psr-4": {
  22. "Ratchet\\": "src/Ratchet"
  23. }
  24. }
  25. , "require": {
  26. "php": ">=5.3.9"
  27. , "react/socket": "^0.3 || ^0.4"
  28. , "guzzle/http": "^3.6"
  29. , "symfony/http-foundation": "^2.2|^3.0"
  30. , "symfony/routing": "^2.2|^3.0"
  31. }
  32. }