├── .editorconfig ├── .github └── workflows │ └── tests.yml ├── CHANGELOG.md ├── LICENSE ├── UPGRADING.md ├── composer.json ├── ecs.php ├── rector.php └── src ├── HttpBasicAuthentication.php └── HttpBasicAuthentication ├── ArrayAuthenticator.php ├── AuthenticatorInterface.php ├── PdoAuthenticator.php ├── RequestMethodRule.php ├── RequestPathRule.php └── RuleInterface.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/composer.json -------------------------------------------------------------------------------- /ecs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/ecs.php -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/rector.php -------------------------------------------------------------------------------- /src/HttpBasicAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/src/HttpBasicAuthentication.php -------------------------------------------------------------------------------- /src/HttpBasicAuthentication/ArrayAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/src/HttpBasicAuthentication/ArrayAuthenticator.php -------------------------------------------------------------------------------- /src/HttpBasicAuthentication/AuthenticatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/src/HttpBasicAuthentication/AuthenticatorInterface.php -------------------------------------------------------------------------------- /src/HttpBasicAuthentication/PdoAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/src/HttpBasicAuthentication/PdoAuthenticator.php -------------------------------------------------------------------------------- /src/HttpBasicAuthentication/RequestMethodRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/src/HttpBasicAuthentication/RequestMethodRule.php -------------------------------------------------------------------------------- /src/HttpBasicAuthentication/RequestPathRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/src/HttpBasicAuthentication/RequestPathRule.php -------------------------------------------------------------------------------- /src/HttpBasicAuthentication/RuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuupola/slim-basic-auth/HEAD/src/HttpBasicAuthentication/RuleInterface.php --------------------------------------------------------------------------------