├── .gitignore ├── Context.php ├── Gateway.php ├── GatewayProtocol.php ├── MIT-LICENSE.txt ├── README.md └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /.vscode 3 | /.idea -------------------------------------------------------------------------------- /Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/GatewayClient/HEAD/Context.php -------------------------------------------------------------------------------- /Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/GatewayClient/HEAD/Gateway.php -------------------------------------------------------------------------------- /GatewayProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/GatewayClient/HEAD/GatewayProtocol.php -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/GatewayClient/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/GatewayClient/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/GatewayClient/HEAD/composer.json --------------------------------------------------------------------------------