Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gwleuverink/lockdown
Easily lock sections of your Laravel app with Basic Access Authentication using convenient route middleware & configurable guards
https://github.com/gwleuverink/lockdown
basic-auth composer laravel middleware php
Last synced: 23 days ago
JSON representation
Easily lock sections of your Laravel app with Basic Access Authentication using convenient route middleware & configurable guards
- Host: GitHub
- URL: https://github.com/gwleuverink/lockdown
- Owner: gwleuverink
- License: mit
- Created: 2019-04-18T23:03:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-29T04:25:14.000Z (over 3 years ago)
- Last Synced: 2024-05-02T03:13:22.398Z (6 months ago)
- Topics: basic-auth, composer, laravel, middleware, php
- Language: PHP
- Homepage:
- Size: 102 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Lockdown
Easily lock sections of your Laravel app with Basic Access Authentication using convenient route middleware & configurable guards
## A note on security
Lockdown is meant to shield sections of your project from prying eyes, for example if you like to demo a feature that is not ready for production.Basic Acces Auth is insecure by nature. If in production always make sure to have TLS configured so all credentials are encrypted. Even with that precaution I heavily discourage you use this package to protect valuable data. It is not meant to do that.
That said there are plenty of situations where a easily configurable Basic Access Auth middleware is exactly what you need. If you find yourself in one of those situations, read on!
## Installation
**Install the package**
`composer require leuverink/lockdown`
**Publish the config file**
`php artisan vendor:publish --tag="lockdown:config"`
## Getting started
For usage, check out [the documentation](https://gwleuverink.github.io/lockdown "Lockdown documentation").