composer.json 657 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "ratchet/pawl"
  3. , "description": "Asynchronous WebSocket client"
  4. , "keywords": ["WebSocket", "client", "Ratchet", "async", "websocket client"]
  5. , "license": "MIT"
  6. , "autoload": {
  7. "psr-4": {
  8. "Ratchet\\Client\\": "src"
  9. }
  10. , "files": ["src/functions_include.php"]
  11. }
  12. , "require": {
  13. "php": ">=5.4"
  14. , "evenement/evenement": "^3.0 || ^2.0"
  15. , "guzzlehttp/psr7": "^2.0 || ^1.7"
  16. , "ratchet/rfc6455": "^0.3.1"
  17. , "react/socket": "^1.9"
  18. }
  19. , "require-dev": {
  20. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8"
  21. }
  22. , "suggest": {
  23. "reactivex/rxphp": "~2.0"
  24. }
  25. }