├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Exceptions ├── ClientNotConnected.php ├── CommunicationFailed.php ├── ConnectionTimeout.php ├── CouldNotConnect.php └── TcpClientException.php ├── Support └── SocketError.php └── TcpClient.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/composer.json -------------------------------------------------------------------------------- /src/Exceptions/ClientNotConnected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/src/Exceptions/ClientNotConnected.php -------------------------------------------------------------------------------- /src/Exceptions/CommunicationFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/src/Exceptions/CommunicationFailed.php -------------------------------------------------------------------------------- /src/Exceptions/ConnectionTimeout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/src/Exceptions/ConnectionTimeout.php -------------------------------------------------------------------------------- /src/Exceptions/CouldNotConnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/src/Exceptions/CouldNotConnect.php -------------------------------------------------------------------------------- /src/Exceptions/TcpClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/src/Exceptions/TcpClientException.php -------------------------------------------------------------------------------- /src/Support/SocketError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/src/Support/SocketError.php -------------------------------------------------------------------------------- /src/TcpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/simple-tcp-client/HEAD/src/TcpClient.php --------------------------------------------------------------------------------