PHP code example of imemento / guard-laravel

1. Go to this page and download the library: Download imemento/guard-laravel library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

imemento / guard-laravel example snippets


iMemento\Guard\Laravel\AuthServiceProvider::class,

'api' => [
	'driver' 	=> 'jwt',
	'provider' 	=> 'users',
],

'users' => [
	'driver' 	=> 'static',
	'model' 	=> iMemento\SDK\Auth\User::class,
],

'api' => [
	'throttle:60,1',
	'bindings',
	'auth:api', #this
],

	Route::group(['middleware' => 'auth:api'], function ()) {
		//...
	}