├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── examples └── basic_server.php ├── lib ├── Adapter │ └── Guzzle │ │ └── Factory.php ├── Server.php └── ServerMiddleware │ ├── CallableServerMiddleware.php │ ├── ErrorHandler.php │ ├── GZip.php │ └── HSTS.php └── spec ├── FactoryInterface.php ├── ServerFrameInterface.php └── ServerMiddlewareInterface.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/basic_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/examples/basic_server.php -------------------------------------------------------------------------------- /lib/Adapter/Guzzle/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/lib/Adapter/Guzzle/Factory.php -------------------------------------------------------------------------------- /lib/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/lib/Server.php -------------------------------------------------------------------------------- /lib/ServerMiddleware/CallableServerMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/lib/ServerMiddleware/CallableServerMiddleware.php -------------------------------------------------------------------------------- /lib/ServerMiddleware/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/lib/ServerMiddleware/ErrorHandler.php -------------------------------------------------------------------------------- /lib/ServerMiddleware/GZip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/lib/ServerMiddleware/GZip.php -------------------------------------------------------------------------------- /lib/ServerMiddleware/HSTS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/lib/ServerMiddleware/HSTS.php -------------------------------------------------------------------------------- /spec/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/spec/FactoryInterface.php -------------------------------------------------------------------------------- /spec/ServerFrameInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/spec/ServerFrameInterface.php -------------------------------------------------------------------------------- /spec/ServerMiddlewareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/Tari-PHP/HEAD/spec/ServerMiddlewareInterface.php --------------------------------------------------------------------------------