Skip to content

Repository files navigation

Authentic stateless user layer

LicenseLatest Stable VersionTotal Downloads

🆔 An effective serverless user authentication and authorization layer.

Installation

composer require attla/authentic

Configuration

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

'guards' => [
// ...'authentic' => [
'driver' => 'authentic',
'provider' => 'users',
],
],

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

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

Your model needs implements Authenticatable contract:

useIlluminate\Contracts\Auth\Authenticatable;
class Example implements Authenticatable
{
// ...
}

Providers

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

'providers' => [
// ...'dynamodb' => [
'driver' => 'dynamodb',
'model' => Model::class,
// 'gsi' => '',
],
],

License

This package is licensed under the MIT license © Zunq.

About

🆔 An effective stateless user authentication and authorization layer

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages