composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "cboden/ratchet"
  3. , "type": "library"
  4. , "description": "PHP WebSocket library"
  5. , "keywords": ["WebSockets", "Server", "Ratchet", "Sockets", "WebSocket"]
  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. "name": "Matt Bonneau"
  16. , "role": "Developer"
  17. }
  18. ]
  19. , "support": {
  20. "issues": "https://github.com/ratchetphp/Ratchet/issues"
  21. , "chat": "https://gitter.im/reactphp/reactphp"
  22. }
  23. , "autoload": {
  24. "psr-4": {
  25. "Ratchet\\": "src/Ratchet"
  26. }
  27. }
  28. , "require": {
  29. "php": ">=5.4.2"
  30. , "ratchet/rfc6455": "^0.3.1"
  31. , "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5"
  32. , "react/event-loop": ">=0.4"
  33. , "guzzlehttp/psr7": "^1.7|^2.0"
  34. , "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0"
  35. , "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  36. }
  37. , "require-dev": {
  38. "phpunit/phpunit": "~4.8"
  39. }
  40. }