gitextract_4ggz17vw/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── test.yml ├── .gitignore ├── LICENSE.md ├── README.jp.md ├── README.md ├── composer.json ├── phpstan.neon ├── phpunit.xml ├── src/ │ ├── Console/ │ │ └── GeneratePassword.php │ ├── Handlers/ │ │ ├── DefaultResponseHandler.php │ │ └── ResponseHandler.php │ ├── Http/ │ │ └── Middleware/ │ │ └── VeryBasicAuth.php │ ├── VeryBasicAuthServiceProvider.php │ ├── config.php │ └── resources/ │ └── views/ │ └── default.blade.php └── tests/ ├── Fixtures/ │ └── CustomResponseHandler.php ├── Pest.php ├── TestCase.php └── VeryBasicAuthTest.php