oralunal / scribe-auth
A Laravel middleware package that adds authentication protection to your Scribe API documentation.
v1.0.3
2025-04-28 23:08 UTC
Requires
- php: ^8.2
- knuckleswtf/scribe: ^5.0
- laravel/framework: ^12.0
README
A Laravel middleware package that adds authentication protection to your Scribe API documentation. This package provides a simple way to secure your API documentation with basic authentication, ensuring that only authorized users can access your API documentation pages.
Requirements
- Scribe's
type
config should be set tolaravel
in yourconfig/scribe.php
file. - Scribe's
laravel->add_routes
config should be set totrue
in yourconfig/scribe.php
file.
Installation
- Install the package via Composer:
composer require oralunal/scribe-auth
- Add the
web
andscribe.auth
middleware to yourconfig/scribe.php
file:
'middleware' => [ // ... 'web', 'scribe.auth', ],
- Publish the configuration file:
php artisan vendor:publish --tag=scribe-auth-config
Configuration
The package comes with a config file (config/scribe-auth.php
) where you can customize the following settings:
SCRIBE_AUTH_ENABLED
: Enable/disable the middleware (Default:false
)SCRIBE_AUTH_PASSWORD
: Authentication password (Default:1234567890
)
Add the following environment variable to your .env
file:
SCRIBE_AUTH_ENABLED=true SCRIBE_AUTH_PASSWORD=your_fantastic_password
Security
- Use different credentials in production
- Choose a strong password
- Keep your credentials secure
License
This package is open-sourced software licensed under the MIT license.