dusterio / lumen-passport

Making Laravel Passport work with Lumen
MIT License
655 stars 138 forks source link

Passport Vue Components #19

Closed medienverbinder closed 7 years ago

medienverbinder commented 7 years ago

Passport comes originally with three Vue components for a default frontend.

=> https://laravel.com/docs/5.3/passport#frontend-quickstart

Is there a simple way to integrate these components for Lumen?

dusterio commented 7 years ago

These three routes depend on sessions and views – both things are absent in Lumen. Lumen is a framework for APIs so it's assumed there can't be a 'logged-in user'

medienverbinder commented 7 years ago

First of all: Thanks for the quick reply and your super work.

No sessions, no views .... o.k. makes sense. Basically, I'm looking for a convenient way to register users (email verification) and manage authentication. I do not need sessions, but a simple REST-Client (UI) to create users and/or manage token would be nice :-) Mhhh...Laravel + Passport brings it all, but it's a little oversized for a small project.