goedemiddag / auth
Installs: 1 496
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^7.4|^8.0
- illuminate/auth: ^6.0|^7.0|^8.0|^9.0
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2024-10-25 17:16:30 UTC
README
Simple
Configure a single username/password to login with. Useful in combination with basic auth middleware (auth.basic:simple
).
// config/auth.php 'guards' => [ 'simple' => [ 'driver' => 'session', 'provider' => 'simple', ], ], 'providers' => [ 'simple' => [ 'driver' => 'gm:simple', 'email' => env('SIMPLE_AUTH_USER'), 'password' => env('SIMPLE_AUTH_PASS'), ], ],