├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer-require-checker.json ├── composer.json ├── config └── events-web.php ├── rector.php └── src ├── CompositeParametersResolver.php ├── Debug └── MiddlewareCollector.php ├── Event ├── AfterMiddleware.php └── BeforeMiddleware.php ├── InvalidMiddlewareDefinitionException.php ├── MiddlewareDispatcher.php ├── MiddlewareFactory.php ├── MiddlewareStack.php └── ParametersResolverInterface.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/README.md -------------------------------------------------------------------------------- /composer-require-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/composer-require-checker.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/composer.json -------------------------------------------------------------------------------- /config/events-web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/config/events-web.php -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/rector.php -------------------------------------------------------------------------------- /src/CompositeParametersResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/src/CompositeParametersResolver.php -------------------------------------------------------------------------------- /src/Debug/MiddlewareCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/src/Debug/MiddlewareCollector.php -------------------------------------------------------------------------------- /src/Event/AfterMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/src/Event/AfterMiddleware.php -------------------------------------------------------------------------------- /src/Event/BeforeMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/src/Event/BeforeMiddleware.php -------------------------------------------------------------------------------- /src/InvalidMiddlewareDefinitionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/src/InvalidMiddlewareDefinitionException.php -------------------------------------------------------------------------------- /src/MiddlewareDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/src/MiddlewareDispatcher.php -------------------------------------------------------------------------------- /src/MiddlewareFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/src/MiddlewareFactory.php -------------------------------------------------------------------------------- /src/MiddlewareStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/src/MiddlewareStack.php -------------------------------------------------------------------------------- /src/ParametersResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/middleware-dispatcher/HEAD/src/ParametersResolverInterface.php --------------------------------------------------------------------------------