├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── example.php ├── httpkernel_example.php ├── phpunit.xml.dist ├── src ├── HttpKernelRequestHandler.php ├── HttpServer.php ├── RequestHandler.php └── RequestHandlerInterface.php └── tests ├── HttpKernelRequestHandlerTest.php └── HttpServerTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/composer.json -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/example.php -------------------------------------------------------------------------------- /httpkernel_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/httpkernel_example.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/HttpKernelRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/src/HttpKernelRequestHandler.php -------------------------------------------------------------------------------- /src/HttpServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/src/HttpServer.php -------------------------------------------------------------------------------- /src/RequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/src/RequestHandler.php -------------------------------------------------------------------------------- /src/RequestHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/src/RequestHandlerInterface.php -------------------------------------------------------------------------------- /tests/HttpKernelRequestHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/tests/HttpKernelRequestHandlerTest.php -------------------------------------------------------------------------------- /tests/HttpServerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosymfony/HttpServer/HEAD/tests/HttpServerTest.php --------------------------------------------------------------------------------