├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── lib └── EBernhardson └── FastCGI ├── Client.php ├── CommunicationException.php └── Response.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebernhardson/fastcgi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebernhardson/fastcgi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebernhardson/fastcgi/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebernhardson/fastcgi/HEAD/composer.json -------------------------------------------------------------------------------- /lib/EBernhardson/FastCGI/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebernhardson/fastcgi/HEAD/lib/EBernhardson/FastCGI/Client.php -------------------------------------------------------------------------------- /lib/EBernhardson/FastCGI/CommunicationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebernhardson/fastcgi/HEAD/lib/EBernhardson/FastCGI/CommunicationException.php -------------------------------------------------------------------------------- /lib/EBernhardson/FastCGI/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebernhardson/fastcgi/HEAD/lib/EBernhardson/FastCGI/Response.php --------------------------------------------------------------------------------