gitextract_uifflmqw/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bugreport.yml │ │ └── config.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── composer.json ├── phpunit.xml.dist ├── phpunit.xml.legacy ├── src/ │ └── Ratchet/ │ ├── AbstractConnectionDecorator.php │ ├── App.php │ ├── ComponentInterface.php │ ├── ConnectionInterface.php │ ├── Http/ │ │ ├── CloseResponseTrait.php │ │ ├── HttpRequestParser.php │ │ ├── HttpServer.php │ │ ├── HttpServerInterface.php │ │ ├── NoOpHttpServerController.php │ │ ├── OriginCheck.php │ │ └── Router.php │ ├── MessageComponentInterface.php │ ├── MessageInterface.php │ ├── Server/ │ │ ├── EchoServer.php │ │ ├── FlashPolicy.php │ │ ├── IoConnection.php │ │ ├── IoServer.php │ │ └── IpBlackList.php │ ├── Session/ │ │ ├── Serialize/ │ │ │ ├── HandlerInterface.php │ │ │ ├── PhpBinaryHandler.php │ │ │ └── PhpHandler.php │ │ ├── SessionProvider.php │ │ └── Storage/ │ │ ├── Proxy/ │ │ │ ├── VirtualProxy.php │ │ │ ├── VirtualProxyForSymfony6.php │ │ │ └── VirtualProxyForSymfony7.php │ │ ├── VirtualSessionStorage.php │ │ ├── VirtualSessionStorageForSymfony6.php │ │ └── VirtualSessionStorageForSymfony7.php │ ├── Wamp/ │ │ ├── Exception.php │ │ ├── JsonException.php │ │ ├── ServerProtocol.php │ │ ├── Topic.php │ │ ├── TopicManager.php │ │ ├── WampConnection.php │ │ ├── WampServer.php │ │ └── WampServerInterface.php │ └── WebSocket/ │ ├── ConnContext.php │ ├── MessageCallableInterface.php │ ├── MessageComponentInterface.php │ ├── WsConnection.php │ ├── WsServer.php │ └── WsServerInterface.php └── tests/ ├── autobahn/ │ ├── bin/ │ │ └── fuzzingserver.php │ ├── fuzzingclient-all.json │ ├── fuzzingclient-profile.json │ └── fuzzingclient-quick.json ├── bootstrap.php ├── helpers/ │ └── Ratchet/ │ ├── AbstractMessageComponentTestCase.php │ ├── Mock/ │ │ ├── Connection.php │ │ ├── ConnectionDecorator.php │ │ └── WampComponent.php │ ├── NullComponent.php │ ├── Wamp/ │ │ └── Stub/ │ │ └── WsWampServerInterface.php │ └── WebSocket/ │ └── Stub/ │ └── WsMessageComponentInterface.php └── unit/ ├── AbstractConnectionDecoratorTest.php ├── AppTest.php ├── Http/ │ ├── HttpRequestParserTest.php │ ├── HttpServerTest.php │ ├── OriginCheckTest.php │ └── RouterTest.php ├── Server/ │ ├── EchoServerTest.php │ ├── FlashPolicyComponentTest.php │ ├── IoConnectionTest.php │ ├── IoServerTest.php │ └── IpBlackListComponentTest.php ├── Session/ │ ├── Serialize/ │ │ ├── PhpBinaryHandlerTest.php │ │ └── PhpHandlerTest.php │ ├── SessionProviderTest.php │ └── Storage/ │ └── VirtualSessionStoragePDOTest.php └── Wamp/ ├── ServerProtocolTest.php ├── TopicManagerTest.php ├── TopicTest.php ├── WampConnectionTest.php └── WampServerTest.php