├── COPYRIGHT.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── AuthenticationInterface.php ├── AuthenticationMiddleware.php ├── AuthenticationMiddlewareFactory.php ├── ConfigProvider.php ├── DefaultUser.php ├── DefaultUserFactory.php ├── Exception ├── ExceptionInterface.php ├── InvalidConfigException.php └── RuntimeException.php ├── UserInterface.php ├── UserRepository ├── Htpasswd.php ├── HtpasswdFactory.php ├── PdoDatabase.php └── PdoDatabaseFactory.php └── UserRepositoryInterface.php /COPYRIGHT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/COPYRIGHT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/composer.json -------------------------------------------------------------------------------- /src/AuthenticationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/AuthenticationInterface.php -------------------------------------------------------------------------------- /src/AuthenticationMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/AuthenticationMiddleware.php -------------------------------------------------------------------------------- /src/AuthenticationMiddlewareFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/AuthenticationMiddlewareFactory.php -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/DefaultUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/DefaultUser.php -------------------------------------------------------------------------------- /src/DefaultUserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/DefaultUserFactory.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/Exception/InvalidConfigException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/UserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/UserInterface.php -------------------------------------------------------------------------------- /src/UserRepository/Htpasswd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/UserRepository/Htpasswd.php -------------------------------------------------------------------------------- /src/UserRepository/HtpasswdFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/UserRepository/HtpasswdFactory.php -------------------------------------------------------------------------------- /src/UserRepository/PdoDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/UserRepository/PdoDatabase.php -------------------------------------------------------------------------------- /src/UserRepository/PdoDatabaseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/UserRepository/PdoDatabaseFactory.php -------------------------------------------------------------------------------- /src/UserRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-authentication/HEAD/src/UserRepositoryInterface.php --------------------------------------------------------------------------------