├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── AuthorizationInterface.php ├── AuthorizationMiddleware.php ├── AuthorizationMiddlewareFactory.php ├── ConfigProvider.php └── Exception ├── ExceptionInterface.php ├── InvalidConfigException.php └── RuntimeException.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/composer.json -------------------------------------------------------------------------------- /src/AuthorizationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/src/AuthorizationInterface.php -------------------------------------------------------------------------------- /src/AuthorizationMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/src/AuthorizationMiddleware.php -------------------------------------------------------------------------------- /src/AuthorizationMiddlewareFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/src/AuthorizationMiddlewareFactory.php -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/src/Exception/InvalidConfigException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-authorization/HEAD/src/Exception/RuntimeException.php --------------------------------------------------------------------------------