1.0.1 2022-04-29 11:30 UTC

This package is auto-updated.

Last update: 2024-04-25 16:17:06 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'),
    ],
],