voronoi / lock-dev-middleware
Laravel middleware to add HTTP Auth just to dev servers
dev-master
2020-06-10 20:48 UTC
Requires
- php: >=7.1
Requires (Dev)
- orchestra/testbench: ~3.8.0
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2025-03-11 16:00:22 UTC
README
This package is a dead simple way to lock access to a dev website behind basic HTTP authentication. This middleware will not authenticate for local
, testing
, or production
environments.
Installation
-
composer require voronoi/lock-dev-middleware
-
Set
DEV_USERNAME
andDEV_PASSWORD
in your.env
file. -
Add
\Voronoi\LockDev\Middleware::class
to yourapp/Http/Kernel.php
to lock everything down.
protected $middleware = [
\App\Http\Middleware\DevLogin::class,
...
];
- Enjoy!
Tests
Be sure to run the tests with --stderr
. e.g. vendor/bin/phpunit --stderr
.