|  Download Lumen with JWT AuthenticationBasically this is a starter kit for you to integrate Lumen with JWT Authentication Quick Start> Note:
- You can now use:
- `POST /auth/login`?> with email and password, obtain a JWT token
-`GET /posts`?> anyone gets a list of all the posts in the database
-`POST /posts`?> any authenticated user (using JWT, for instance) can create a post
-`PUT /posts/:post_id`?> the Owner of :post_id (authenticated using JWT, for instance) can modify the post And remember, JWT requires you to provide the token as a header. |