├── .gitignore ├── .htaccess ├── README.md ├── composer.json ├── composer.lock ├── index.php └── src ├── BasePathResolverMiddleware.php ├── CacheMiddleware.php ├── CallableHttpKernel.php ├── DecodeJsonMiddleware.php ├── DecodeMyXmlMiddleware.php ├── DispatchingMiddleware.php ├── EventMiddleware.php ├── ForbiddenError.php ├── HttpError.php ├── HttpMiddlewareInterface.php ├── HttpPathMiddleware.php ├── HttpSender.php ├── MyDomainObject.php ├── NegotiationMiddleware.php ├── NotFoundError.php ├── RoutingMiddleware.php ├── StringStream.php └── StringValue.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/index.php -------------------------------------------------------------------------------- /src/BasePathResolverMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/BasePathResolverMiddleware.php -------------------------------------------------------------------------------- /src/CacheMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/CacheMiddleware.php -------------------------------------------------------------------------------- /src/CallableHttpKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/CallableHttpKernel.php -------------------------------------------------------------------------------- /src/DecodeJsonMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/DecodeJsonMiddleware.php -------------------------------------------------------------------------------- /src/DecodeMyXmlMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/DecodeMyXmlMiddleware.php -------------------------------------------------------------------------------- /src/DispatchingMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/DispatchingMiddleware.php -------------------------------------------------------------------------------- /src/EventMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/EventMiddleware.php -------------------------------------------------------------------------------- /src/ForbiddenError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/ForbiddenError.php -------------------------------------------------------------------------------- /src/HttpError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/HttpError.php -------------------------------------------------------------------------------- /src/HttpMiddlewareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/HttpMiddlewareInterface.php -------------------------------------------------------------------------------- /src/HttpPathMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/HttpPathMiddleware.php -------------------------------------------------------------------------------- /src/HttpSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/HttpSender.php -------------------------------------------------------------------------------- /src/MyDomainObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/MyDomainObject.php -------------------------------------------------------------------------------- /src/NegotiationMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/NegotiationMiddleware.php -------------------------------------------------------------------------------- /src/NotFoundError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/NotFoundError.php -------------------------------------------------------------------------------- /src/RoutingMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/RoutingMiddleware.php -------------------------------------------------------------------------------- /src/StringStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/StringStream.php -------------------------------------------------------------------------------- /src/StringValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crell/stacker/HEAD/src/StringValue.php --------------------------------------------------------------------------------