├── LICENSE ├── README.md ├── composer.json ├── infection.json.dist ├── phpcs.xml.dist ├── phpstan.neon └── src ├── Exception └── SocketException.php ├── Server.php └── Socket.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navarr/Sockets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navarr/Sockets/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navarr/Sockets/HEAD/composer.json -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navarr/Sockets/HEAD/infection.json.dist -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navarr/Sockets/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navarr/Sockets/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Exception/SocketException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navarr/Sockets/HEAD/src/Exception/SocketException.php -------------------------------------------------------------------------------- /src/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navarr/Sockets/HEAD/src/Server.php -------------------------------------------------------------------------------- /src/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navarr/Sockets/HEAD/src/Socket.php --------------------------------------------------------------------------------