├── Auth ├── AuthenticationProvider.php └── AuthenticationProviderInterface.php ├── Command └── StartCommand.php ├── DependencyInjection ├── Compiler │ └── ServerProviderCompilerPass.php ├── Configuration.php └── KrakenCollectiveWsSymfonyExtension.php ├── Dispatcher └── ClientEventDispatcher.php ├── Event ├── ClientErrorEvent.php ├── ClientEvent.php ├── ClientMessageEvent.php └── Events.php ├── Exception ├── RuntimeException.php ├── ServiceNotFoundException.php └── WsSymfonyException.php ├── Helper └── ConnectionHelper.php ├── KrakenCollectiveWsSymfonyBundle.php ├── LICENSE ├── README.md ├── Resources ├── config │ ├── parameters.yml │ └── services.yml ├── doc │ ├── config-reference.md │ └── index.md └── meta │ └── LICENSE ├── Server ├── Provider │ ├── AbstractProvider.php │ ├── ServerConfigProvider.php │ └── ServerProvider.php ├── Server.php ├── ServerComponent.php └── ServerConfig.php ├── Session └── SessionProvider.php └── composer.json /Auth/AuthenticationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Auth/AuthenticationProvider.php -------------------------------------------------------------------------------- /Auth/AuthenticationProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Auth/AuthenticationProviderInterface.php -------------------------------------------------------------------------------- /Command/StartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Command/StartCommand.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/ServerProviderCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/DependencyInjection/Compiler/ServerProviderCompilerPass.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/KrakenCollectiveWsSymfonyExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/DependencyInjection/KrakenCollectiveWsSymfonyExtension.php -------------------------------------------------------------------------------- /Dispatcher/ClientEventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Dispatcher/ClientEventDispatcher.php -------------------------------------------------------------------------------- /Event/ClientErrorEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Event/ClientErrorEvent.php -------------------------------------------------------------------------------- /Event/ClientEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Event/ClientEvent.php -------------------------------------------------------------------------------- /Event/ClientMessageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Event/ClientMessageEvent.php -------------------------------------------------------------------------------- /Event/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Event/Events.php -------------------------------------------------------------------------------- /Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Exception/RuntimeException.php -------------------------------------------------------------------------------- /Exception/ServiceNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Exception/ServiceNotFoundException.php -------------------------------------------------------------------------------- /Exception/WsSymfonyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Exception/WsSymfonyException.php -------------------------------------------------------------------------------- /Helper/ConnectionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Helper/ConnectionHelper.php -------------------------------------------------------------------------------- /KrakenCollectiveWsSymfonyBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/KrakenCollectiveWsSymfonyBundle.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Resources/config/parameters.yml -------------------------------------------------------------------------------- /Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Resources/config/services.yml -------------------------------------------------------------------------------- /Resources/doc/config-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Resources/doc/config-reference.md -------------------------------------------------------------------------------- /Resources/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Resources/doc/index.md -------------------------------------------------------------------------------- /Resources/meta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Resources/meta/LICENSE -------------------------------------------------------------------------------- /Server/Provider/AbstractProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Server/Provider/AbstractProvider.php -------------------------------------------------------------------------------- /Server/Provider/ServerConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Server/Provider/ServerConfigProvider.php -------------------------------------------------------------------------------- /Server/Provider/ServerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Server/Provider/ServerProvider.php -------------------------------------------------------------------------------- /Server/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Server/Server.php -------------------------------------------------------------------------------- /Server/ServerComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Server/ServerComponent.php -------------------------------------------------------------------------------- /Server/ServerConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Server/ServerConfig.php -------------------------------------------------------------------------------- /Session/SessionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/Session/SessionProvider.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraken-collective/ws-symfony/HEAD/composer.json --------------------------------------------------------------------------------