tomgrohl/laravel-memory-auth-provider

Laravel In memory auth provider.
2,094 3
Install
composer require tomgrohl/laravel-memory-auth-provider
Latest Version:1.0.1
License:MIT
Last Updated:Apr 13, 2020
Links: GitHub  ·  Packagist
Maintainer: tomgrohl

Latest Stable Version Latest Unstable Version License

Laravel Memory Auth Provider

A In Memory User Auth Provider for Laravel 5.1+.

Allows you to Authenticate and admin area without the need for a database. Great as a quick and temporary solution during development, particularly if your site is mocked out and not let using a database.

Installation

You can install it using composer:

composer require tomgrohl/laravel-memory-auth-provider

Configuration

1 .Add service provider

Add the following to your providers in the app config

<?php

return [
    
    //...
    
    'providers' => [
        //...    
        'Tomgrohl\Laravel\Auth\AuthServiceProvider',
        
        // OR
        \Tomgrohl\Laravel\Auth\AuthServiceProvider::class,
    ]
    
    
];

2. Setup config

In the auth config you will need to set the driver:

    'driver' => 'memory',

Add also setup your in memory users:

    'memory' => [
        'model' => 'Illuminate\Auth\GenericUser',
        'users' => [
    
            'admin' => [
                'id' => 1,
                // Hashed passord using the hasher service
                'password' => '$2y$10$Mfusxb1546MFxQ4A1s4GE.OF/gFuI8Y6Hw9xnlZeiHtjDl0/pnXPK',
            ],
        ],
    ],

You can add any properties you want making it easy to switch out the Auth drivers.

The package comes with a command for hashing passwords, making it easier to setup passwords, just run the following command to hash your password:

php artisan tomgrohl:hash:password mypassword

Related Packages

sarav/laravel-multiauth

A Simple Laravel Package for handling multiple authentication

31,018 50
tymon/jwt-auth

JSON Web Token Authentication for Laravel and Lumen

52,310,851 11,496
kodeine/laravel-acl

Light-weight role-based permissions for Laravel 5 built in Auth system.

361,293 777
lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users...

19,094,858 2,336
phpzen/laravel-rbac

Role based access control for Laravel 5

3,231 38