在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):francescomalatesta/laravel-api-boilerplate-jwt开源软件地址(OpenSource Url):https://github.com/francescomalatesta/laravel-api-boilerplate-jwt开源编程语言(OpenSource Language):PHP 96.2%开源软件介绍(OpenSource Introduction):Laravel API Boilerplate (JWT Edition) for Laravel 5.8Laravel API Boilerplate is a "starter kit" you can use to build your first API in seconds. As you can easily imagine, it is built on top of the awesome Laravel Framework. This version is built on Laravel 5.8! It is built on top of three big guys:
What I made is really simple: an integration of these three packages and a setup of some authentication and credentials recovery methods. Installation
Once the project creation procedure will be completed, run the UsageI wrote a couple of articles on this project that explain how to write an entire sample application with this boilerplate. They cover the older version of this boilerplate, but all the concepts are the same. You can find them on Sitepoint: Just be aware that some options in the WARNING: the articles are old and Laravel 5.1 related. Just use them as "inspiration". Even without updated tutorials, they should be enough. Main FeaturesReady-To-Use Authentication ControllersYou don't have to worry about authentication and password recovery anymore. I created four controllers you can find in the For each controller there's an already setup route in
Separate File for RoutesAll the API routes can be found in the Secrets GenerationEvery time you create a new project starting from this repository, the php artisan jwt:generate command will be executed. ConfigurationYou can find all the boilerplate specific settings in the <?php
return [
// these options are related to the sign-up procedure
'sign_up' => [
// this option must be set to true if you want to release a token
// when your user successfully terminates the sign-in procedure
'release_token' => env('SIGN_UP_RELEASE_TOKEN', false),
// here you can specify some validation rules for your sign-in request
'validation_rules' => [
'name' => 'required',
'email' => 'required|email',
'password' => 'required'
]
],
// these options are related to the login procedure
'login' => [
// here you can specify some validation rules for your login request
'validation_rules' => [
'email' => 'required|email',
'password' => 'required'
]
],
// these options are related to the password recovery procedure
'forgot_password' => [
// here you can specify some validation rules for your password recovery procedure
'validation_rules' => [
'email' => 'required|email'
]
],
// these options are related to the password recovery procedure
'reset_password' => [
// this option must be set to true if you want to release a token
// when your user successfully terminates the password reset procedure
'release_token' => env('PASSWORD_RESET_RELEASE_TOKEN', false),
// here you can specify some validation rules for your password recovery procedure
'validation_rules' => [
'token' => 'required',
'email' => 'required|email',
'password' => 'required|confirmed'
]
]
]; As I already said before, this boilerplate is based on dingo/api and tymondesigns/jwt-auth packages. So, you can find many informations about configuration here and here. However, there are some extra options that I placed in a config/boilerplate.php file:
There are also the validation rules for every action (login, sign up, recovery and reset). Feel free to customize it for your needs. Creating EndpointsYou can create endpoints in the same way you could to with using the single dingo/api package. You can read its documentation for details. After all, that's just a boilerplate! :) However, I added some example routes to the Cross Origin Resource SharingIf you want to enable CORS for a specific route or routes group, you just have to use the cors middleware on them. Thanks to the barryvdh/laravel-cors package, you can handle CORS easily. Just check the docs at this page for more info. TestsIf you want to contribute to this project, feel free to do it and open a PR. However, make sure you have tests for what you implement. In order to run tests:
FeedbackI currently made this project for personal purposes. I decided to share it here to help anyone with the same needs. If you have any feedback to improve it, feel free to make a suggestion, or open a PR! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论