├── .gitignore ├── README.md ├── composer.json ├── examples └── php-fpm.php └── src ├── Cache ├── ArrayCache.php └── CacheInterface.php ├── Exceptions └── ProtocolException.php ├── FCGIRequest.php ├── FPM.php ├── Handler ├── EchoHandler.php └── HandlerInterface.php └── ProtocolTranslator.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | swoole.php 3 | vendor/ 4 | composer.lock 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/composer.json -------------------------------------------------------------------------------- /examples/php-fpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/examples/php-fpm.php -------------------------------------------------------------------------------- /src/Cache/ArrayCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/src/Cache/ArrayCache.php -------------------------------------------------------------------------------- /src/Cache/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/src/Cache/CacheInterface.php -------------------------------------------------------------------------------- /src/Exceptions/ProtocolException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/src/Exceptions/ProtocolException.php -------------------------------------------------------------------------------- /src/FCGIRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/src/FCGIRequest.php -------------------------------------------------------------------------------- /src/FPM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/src/FPM.php -------------------------------------------------------------------------------- /src/Handler/EchoHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/src/Handler/EchoHandler.php -------------------------------------------------------------------------------- /src/Handler/HandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/src/Handler/HandlerInterface.php -------------------------------------------------------------------------------- /src/ProtocolTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/white-poto/swoole-php-fpm/HEAD/src/ProtocolTranslator.php --------------------------------------------------------------------------------