composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "ratchet/rfc6455",
  3. "type": "library",
  4. "description": "RFC6455 WebSocket protocol handler",
  5. "keywords": ["WebSockets", "websocket", "RFC6455"],
  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/RFC6455/issues",
  21. "chat": "https://gitter.im/reactphp/reactphp"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Ratchet\\RFC6455\\": "src"
  26. }
  27. },
  28. "require": {
  29. "php": ">=5.4.2",
  30. "guzzlehttp/psr7": "^2 || ^1.7"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^5.7",
  34. "react/socket": "^1.3"
  35. },
  36. "scripts": {
  37. "abtest-client": "ABTEST=client && sh tests/ab/run_ab_tests.sh",
  38. "abtest-server": "ABTEST=server && sh tests/ab/run_ab_tests.sh",
  39. "phpunit": "phpunit --colors=always",
  40. "test": [
  41. "@abtest-client",
  42. "@abtest-server",
  43. "@phpunit"
  44. ]
  45. }
  46. }