├── .gitignore ├── LICENSE ├── README.md ├── bin └── gateway ├── composer.json ├── composer.lock └── src ├── AccessLogMiddleware.php └── CgiRequestHandler.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/gateway/HEAD/README.md -------------------------------------------------------------------------------- /bin/gateway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/gateway/HEAD/bin/gateway -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/gateway/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/gateway/HEAD/composer.lock -------------------------------------------------------------------------------- /src/AccessLogMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/gateway/HEAD/src/AccessLogMiddleware.php -------------------------------------------------------------------------------- /src/CgiRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/gateway/HEAD/src/CgiRequestHandler.php --------------------------------------------------------------------------------