├── .editorconfig ├── .github └── workflows │ └── build.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpstan.neon ├── phpstyle.php └── src ├── Application.php ├── Application └── Application.php ├── Component ├── AbstractComponent.php ├── Collection.php ├── Collector.php └── ComponentInterface.php ├── ComponentCollection.php ├── Components.php ├── Configuration.php ├── Container ├── AurynContainer.php ├── Container.php ├── ContainerException.php ├── ContainerInterface.php ├── Exception │ ├── ContainerException.php │ └── NotFoundException.php ├── LeagueContainer.php ├── NotFoundException.php ├── Parameter.php ├── ReflectionContainer.php └── VanillaContainer.php ├── Debug ├── Debugger.php ├── DebuggerInterface.php ├── ErrorHandler.php ├── ErrorHandlerIntegration.php ├── ErrorHandlerInterface.php ├── Vanilla │ └── Debugger.php ├── VanillaErrorHandler.php ├── Whoops │ └── Debugger.php ├── WhoopsDebugger.php └── WhoopsErrorHandler.php ├── Dispatching ├── BaseRouter.php ├── Dispatcher.php ├── DispatcherInterface.php ├── FastRoute │ ├── Dispatcher.php │ └── Router.php ├── Phroute │ ├── Dispatcher.php │ └── Router.php ├── Router.php ├── RouterInterface.php └── Vanilla │ ├── Dispatcher.php │ └── Router.php ├── ErrorHandler ├── ErrorHandlerInterface.php └── Whoops.php ├── Http ├── HttpIntegration.php ├── LICENSE.md ├── Message.php ├── Request.php ├── Response.php ├── ServerRequest.php ├── Stream.php ├── UploadedFile.php └── Uri.php ├── Integration ├── Configuration.php ├── ConfigurationIntegration.php └── IntegrationInterface.php ├── IoC ├── Auryn.php ├── Auryn │ └── Container.php ├── AurynContainer.php ├── BaseContainer.php ├── Container.php ├── ContainerInterface.php ├── DependencyInjectorInterface.php ├── League │ └── Container.php ├── LeagueContainer.php └── Vanilla │ ├── Container.php │ └── Exception │ └── NotFoundException.php ├── Middleware ├── Callback.php ├── Delegate.php ├── Dispatcher.php ├── DispatcherInterface.php ├── Doublepass.php ├── Handler.php ├── HandlerInterface.php ├── Handlers │ ├── Handler030.php │ ├── Handler041.php │ ├── Handler050.php │ └── Handler100.php ├── Interop.php ├── Middleware.php ├── MiddlewareIntegration.php ├── MiddlewareInterface.php ├── Stratigility │ └── Middleware.php ├── StratigilityDispatcher.php ├── StratigilityMiddleware.php ├── Vanilla │ ├── Delegate.php │ └── Middleware.php ├── VanillaDelegate.php ├── VanillaMiddleware.php ├── Version.php └── Wrapper.php ├── Routing ├── Dispatcher.php ├── DispatcherInterface.php ├── FastRoute │ ├── Dispatcher.php │ └── Router.php ├── FastRouteDispatcher.php ├── FastRouteRouter.php ├── Phroute │ ├── Dispatcher.php │ └── Router.php ├── PhrouteDispatcher.php ├── PhrouteResolver.php ├── PhrouteRouter.php ├── PhrouteWrapper.php ├── Route.php ├── RouteInterface.php ├── Router.php ├── RouterInterface.php ├── RoutingIntegration.php └── Vanilla │ ├── Dispatcher.php │ └── Router.php ├── System.php ├── System ├── Handler.php ├── Lastone.php └── Routing.php └── Template ├── Renderer.php ├── RendererIntegration.php ├── RendererInterface.php ├── Twig.php ├── Twig └── Renderer.php ├── TwigLoader.php ├── TwigRenderer.php ├── Vanilla └── Renderer.php └── VanillaRenderer.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpstyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/phpstyle.php -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Application/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Application/Application.php -------------------------------------------------------------------------------- /src/Component/AbstractComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Component/AbstractComponent.php -------------------------------------------------------------------------------- /src/Component/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Component/Collection.php -------------------------------------------------------------------------------- /src/Component/Collector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Component/Collector.php -------------------------------------------------------------------------------- /src/Component/ComponentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Component/ComponentInterface.php -------------------------------------------------------------------------------- /src/ComponentCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/ComponentCollection.php -------------------------------------------------------------------------------- /src/Components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Components.php -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Configuration.php -------------------------------------------------------------------------------- /src/Container/AurynContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/AurynContainer.php -------------------------------------------------------------------------------- /src/Container/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/Container.php -------------------------------------------------------------------------------- /src/Container/ContainerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/ContainerException.php -------------------------------------------------------------------------------- /src/Container/ContainerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/ContainerInterface.php -------------------------------------------------------------------------------- /src/Container/Exception/ContainerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/Exception/ContainerException.php -------------------------------------------------------------------------------- /src/Container/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/Exception/NotFoundException.php -------------------------------------------------------------------------------- /src/Container/LeagueContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/LeagueContainer.php -------------------------------------------------------------------------------- /src/Container/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/NotFoundException.php -------------------------------------------------------------------------------- /src/Container/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/Parameter.php -------------------------------------------------------------------------------- /src/Container/ReflectionContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/ReflectionContainer.php -------------------------------------------------------------------------------- /src/Container/VanillaContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Container/VanillaContainer.php -------------------------------------------------------------------------------- /src/Debug/Debugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Debug/Debugger.php -------------------------------------------------------------------------------- /src/Debug/DebuggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Debug/DebuggerInterface.php -------------------------------------------------------------------------------- /src/Debug/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Debug/ErrorHandler.php -------------------------------------------------------------------------------- /src/Debug/ErrorHandlerIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Debug/ErrorHandlerIntegration.php -------------------------------------------------------------------------------- /src/Debug/ErrorHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Debug/ErrorHandlerInterface.php -------------------------------------------------------------------------------- /src/Debug/Vanilla/Debugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Debug/Vanilla/Debugger.php -------------------------------------------------------------------------------- /src/Debug/VanillaErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Debug/VanillaErrorHandler.php -------------------------------------------------------------------------------- /src/Debug/Whoops/Debugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Debug/Whoops/Debugger.php -------------------------------------------------------------------------------- /src/Debug/WhoopsDebugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Debug/WhoopsDebugger.php -------------------------------------------------------------------------------- /src/Debug/WhoopsErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Debug/WhoopsErrorHandler.php -------------------------------------------------------------------------------- /src/Dispatching/BaseRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/BaseRouter.php -------------------------------------------------------------------------------- /src/Dispatching/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/Dispatcher.php -------------------------------------------------------------------------------- /src/Dispatching/DispatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/DispatcherInterface.php -------------------------------------------------------------------------------- /src/Dispatching/FastRoute/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/FastRoute/Dispatcher.php -------------------------------------------------------------------------------- /src/Dispatching/FastRoute/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/FastRoute/Router.php -------------------------------------------------------------------------------- /src/Dispatching/Phroute/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/Phroute/Dispatcher.php -------------------------------------------------------------------------------- /src/Dispatching/Phroute/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/Phroute/Router.php -------------------------------------------------------------------------------- /src/Dispatching/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/Router.php -------------------------------------------------------------------------------- /src/Dispatching/RouterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/RouterInterface.php -------------------------------------------------------------------------------- /src/Dispatching/Vanilla/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/Vanilla/Dispatcher.php -------------------------------------------------------------------------------- /src/Dispatching/Vanilla/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Dispatching/Vanilla/Router.php -------------------------------------------------------------------------------- /src/ErrorHandler/ErrorHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/ErrorHandler/ErrorHandlerInterface.php -------------------------------------------------------------------------------- /src/ErrorHandler/Whoops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/ErrorHandler/Whoops.php -------------------------------------------------------------------------------- /src/Http/HttpIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Http/HttpIntegration.php -------------------------------------------------------------------------------- /src/Http/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Http/LICENSE.md -------------------------------------------------------------------------------- /src/Http/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Http/Message.php -------------------------------------------------------------------------------- /src/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Http/Request.php -------------------------------------------------------------------------------- /src/Http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Http/Response.php -------------------------------------------------------------------------------- /src/Http/ServerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Http/ServerRequest.php -------------------------------------------------------------------------------- /src/Http/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Http/Stream.php -------------------------------------------------------------------------------- /src/Http/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Http/UploadedFile.php -------------------------------------------------------------------------------- /src/Http/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Http/Uri.php -------------------------------------------------------------------------------- /src/Integration/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Integration/Configuration.php -------------------------------------------------------------------------------- /src/Integration/ConfigurationIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Integration/ConfigurationIntegration.php -------------------------------------------------------------------------------- /src/Integration/IntegrationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Integration/IntegrationInterface.php -------------------------------------------------------------------------------- /src/IoC/Auryn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/Auryn.php -------------------------------------------------------------------------------- /src/IoC/Auryn/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/Auryn/Container.php -------------------------------------------------------------------------------- /src/IoC/AurynContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/AurynContainer.php -------------------------------------------------------------------------------- /src/IoC/BaseContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/BaseContainer.php -------------------------------------------------------------------------------- /src/IoC/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/Container.php -------------------------------------------------------------------------------- /src/IoC/ContainerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/ContainerInterface.php -------------------------------------------------------------------------------- /src/IoC/DependencyInjectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/DependencyInjectorInterface.php -------------------------------------------------------------------------------- /src/IoC/League/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/League/Container.php -------------------------------------------------------------------------------- /src/IoC/LeagueContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/LeagueContainer.php -------------------------------------------------------------------------------- /src/IoC/Vanilla/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/Vanilla/Container.php -------------------------------------------------------------------------------- /src/IoC/Vanilla/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/IoC/Vanilla/Exception/NotFoundException.php -------------------------------------------------------------------------------- /src/Middleware/Callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Callback.php -------------------------------------------------------------------------------- /src/Middleware/Delegate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Delegate.php -------------------------------------------------------------------------------- /src/Middleware/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Dispatcher.php -------------------------------------------------------------------------------- /src/Middleware/DispatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/DispatcherInterface.php -------------------------------------------------------------------------------- /src/Middleware/Doublepass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Doublepass.php -------------------------------------------------------------------------------- /src/Middleware/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Handler.php -------------------------------------------------------------------------------- /src/Middleware/HandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/HandlerInterface.php -------------------------------------------------------------------------------- /src/Middleware/Handlers/Handler030.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Handlers/Handler030.php -------------------------------------------------------------------------------- /src/Middleware/Handlers/Handler041.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Handlers/Handler041.php -------------------------------------------------------------------------------- /src/Middleware/Handlers/Handler050.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Handlers/Handler050.php -------------------------------------------------------------------------------- /src/Middleware/Handlers/Handler100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Handlers/Handler100.php -------------------------------------------------------------------------------- /src/Middleware/Interop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Interop.php -------------------------------------------------------------------------------- /src/Middleware/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Middleware.php -------------------------------------------------------------------------------- /src/Middleware/MiddlewareIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/MiddlewareIntegration.php -------------------------------------------------------------------------------- /src/Middleware/MiddlewareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/MiddlewareInterface.php -------------------------------------------------------------------------------- /src/Middleware/Stratigility/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Stratigility/Middleware.php -------------------------------------------------------------------------------- /src/Middleware/StratigilityDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/StratigilityDispatcher.php -------------------------------------------------------------------------------- /src/Middleware/StratigilityMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/StratigilityMiddleware.php -------------------------------------------------------------------------------- /src/Middleware/Vanilla/Delegate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Vanilla/Delegate.php -------------------------------------------------------------------------------- /src/Middleware/Vanilla/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Vanilla/Middleware.php -------------------------------------------------------------------------------- /src/Middleware/VanillaDelegate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/VanillaDelegate.php -------------------------------------------------------------------------------- /src/Middleware/VanillaMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/VanillaMiddleware.php -------------------------------------------------------------------------------- /src/Middleware/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Version.php -------------------------------------------------------------------------------- /src/Middleware/Wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Middleware/Wrapper.php -------------------------------------------------------------------------------- /src/Routing/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/Dispatcher.php -------------------------------------------------------------------------------- /src/Routing/DispatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/DispatcherInterface.php -------------------------------------------------------------------------------- /src/Routing/FastRoute/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/FastRoute/Dispatcher.php -------------------------------------------------------------------------------- /src/Routing/FastRoute/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/FastRoute/Router.php -------------------------------------------------------------------------------- /src/Routing/FastRouteDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/FastRouteDispatcher.php -------------------------------------------------------------------------------- /src/Routing/FastRouteRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/FastRouteRouter.php -------------------------------------------------------------------------------- /src/Routing/Phroute/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/Phroute/Dispatcher.php -------------------------------------------------------------------------------- /src/Routing/Phroute/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/Phroute/Router.php -------------------------------------------------------------------------------- /src/Routing/PhrouteDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/PhrouteDispatcher.php -------------------------------------------------------------------------------- /src/Routing/PhrouteResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/PhrouteResolver.php -------------------------------------------------------------------------------- /src/Routing/PhrouteRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/PhrouteRouter.php -------------------------------------------------------------------------------- /src/Routing/PhrouteWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/PhrouteWrapper.php -------------------------------------------------------------------------------- /src/Routing/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/Route.php -------------------------------------------------------------------------------- /src/Routing/RouteInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/RouteInterface.php -------------------------------------------------------------------------------- /src/Routing/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/Router.php -------------------------------------------------------------------------------- /src/Routing/RouterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/RouterInterface.php -------------------------------------------------------------------------------- /src/Routing/RoutingIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/RoutingIntegration.php -------------------------------------------------------------------------------- /src/Routing/Vanilla/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/Vanilla/Dispatcher.php -------------------------------------------------------------------------------- /src/Routing/Vanilla/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Routing/Vanilla/Router.php -------------------------------------------------------------------------------- /src/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/System.php -------------------------------------------------------------------------------- /src/System/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/System/Handler.php -------------------------------------------------------------------------------- /src/System/Lastone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/System/Lastone.php -------------------------------------------------------------------------------- /src/System/Routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/System/Routing.php -------------------------------------------------------------------------------- /src/Template/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Template/Renderer.php -------------------------------------------------------------------------------- /src/Template/RendererIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Template/RendererIntegration.php -------------------------------------------------------------------------------- /src/Template/RendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Template/RendererInterface.php -------------------------------------------------------------------------------- /src/Template/Twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Template/Twig.php -------------------------------------------------------------------------------- /src/Template/Twig/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Template/Twig/Renderer.php -------------------------------------------------------------------------------- /src/Template/TwigLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Template/TwigLoader.php -------------------------------------------------------------------------------- /src/Template/TwigRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Template/TwigRenderer.php -------------------------------------------------------------------------------- /src/Template/Vanilla/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Template/Vanilla/Renderer.php -------------------------------------------------------------------------------- /src/Template/VanillaRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rougin/slytherin/HEAD/src/Template/VanillaRenderer.php --------------------------------------------------------------------------------