An open API service indexing awesome lists of open source software.

https://github.com/sander3/laravel-magic-auth

Fast and secure passwordless authentication for the masses.
https://github.com/sander3/laravel-magic-auth

authentication encryption laravel magic-authentication soved

Last synced: about 1 month ago
JSON representation

Fast and secure passwordless authentication for the masses.

Awesome Lists containing this project

README

          

# Authenticate users using a magic link

Fast and secure passwordless authentication for the masses.

[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/sander3/laravel-magic-auth/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/sander3/laravel-magic-auth/?branch=master)
[![Latest Stable Version](https://poser.pugx.org/soved/laravel-magic-auth/v/stable)](https://packagist.org/packages/soved/laravel-magic-auth)
[![Monthly Downloads](https://poser.pugx.org/soved/laravel-magic-auth/d/monthly)](https://packagist.org/packages/soved/laravel-magic-auth)
[![License](https://poser.pugx.org/soved/laravel-magic-auth/license)](https://packagist.org/packages/soved/laravel-magic-auth)

[Buy me a coffee ☕️](https://www.buymeacoffee.com/sander3)

## Requirements

- PHP >= 7.1.3
- Laravel >= 5.6, 6.0 or 7.0

## Installation

First, install the package via the Composer package manager:

```bash
$ composer require soved/laravel-magic-auth
```

After installing the package, you should publish the configuration file:

```bash
$ php artisan vendor:publish --tag=magic-auth-config
```

Add the `Soved\Laravel\Magic\Auth\Contracts\CanMagicallyLogin` interface to the `App\User` model:

```php