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.
- Host: GitHub
- URL: https://github.com/sander3/laravel-magic-auth
- Owner: sander3
- License: mit
- Created: 2018-06-16T12:31:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-01-23T09:41:26.000Z (about 5 years ago)
- Last Synced: 2025-11-27T16:32:31.650Z (about 2 months ago)
- Topics: authentication, encryption, laravel, magic-authentication, soved
- Language: PHP
- Homepage:
- Size: 24.4 KB
- Stars: 15
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Authenticate users using a magic link
Fast and secure passwordless authentication for the masses.
[](https://scrutinizer-ci.com/g/sander3/laravel-magic-auth/?branch=master)
[](https://packagist.org/packages/soved/laravel-magic-auth)
[](https://packagist.org/packages/soved/laravel-magic-auth)
[](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