JWT Authentication for Lumen
Published on by Eric L. Barnes
Mario Bašić has a new tutorial out showing how to implement JSON Web Token Authentication in Lumen. To get this all setup Mario used the jwt-auth package and had to install a few extra dependencies.
What I find interesting is his experience with doing this same thing in Laravel:
… I cannot believe how much easier it was to create the same API (more advanced, with more API methods, more security, better validation) and in less time. Btw every error mentioned in this post was non existent on Laravel. It all went so smoothly and everything had just set in place.
That is pretty much my same experience. Lumen is great for small API’s or something that needs to be really performant. If there is even a slight chance your app will do more, go with Laravel.
Eric is the creator of Laravel News and has been covering Laravel since 2012.