Skip to content

πŸ†” An effective serverless user authentication layer

License

Notifications You must be signed in to change notification settings

attla/authentic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

9 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Authentic user authentication layer

License Latest Stable Version Total Downloads

πŸ†” An effective serverless user authentication layer.

Installation

composer require attla/authentic

Configuration

In ./config/auth.php on guards add the following array:

'guards' => [
    // ...

    'authentic' => [
        'driver'   => 'authentic',
        'provider' => 'users',
    ],
],

This package needs to be used with eloquent provider driver.

If you want to configure the authentic as your default authentication guard set on defaults.guard as:

'defaults' => [
    'guard' => 'authentic',
    // ...
],

Your model needs extends Authenticatable, as:

class Example extends Authenticatable
{
    // ...
}

License

This package is licensed under the MIT license Β© Octha.

About

πŸ†” An effective serverless user authentication layer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages