mocode/sanctum-mongodb
Composer 安装命令:
composer require mocode/sanctum-mongodb
包简介
Laravel Sanctum Mongodb provides a featherweight authentication system for SPAs and simple APIs.
README 文档
README
Laravel Sanctum MongoDB provides a featherweight authentication system for SPAs and simple APIs.
Installation
You may install Laravel Sanctum MongoDB via the Composer package manager:
composer require mocode/sanctum-mongodb
Next, you should publish the Sanctum configuration and migration files using the vendor:publish Artisan command. The sanctum configuration file will be placed in your application's config directory:
php artisan vendor:publish --provider="Mocode\Sanctum\SanctumServiceProvider"
Finally, you should run your database migrations. Sanctum will create one database table in which to store API tokens:
php artisan migrate
Next, if you plan to utilize Sanctum to authenticate an SPA, you should add Sanctum's middleware to your api middleware group within your application's app/Http/Kernel.php file:
'api' => [
\Mocode\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class,
'throttle:api',
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],
Official Documentation
Documentation for Sanctum can be found on the Laravel website.
License
Laravel Sanctum MongoDB is open-sourced software licensed under the MIT license.
统计信息
- 总下载量: 1.89k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-04-23