hypnodev / laravel-mongodb-passport
A package to allow laravel/passport use with jenssegers/laravel-mongodb
Requires
- php: >=7.1
- illuminate/support: ^5.5 || ^6.0 || ^7.0 || ^8.0
- jenssegers/mongodb: 3.3.* || 3.4.* || 3.5.* || 3.6.* || 3.7.* || 3.8.*
- laravel/passport: 6.0.* || 7.0.* || 7.4.* || 7.5.* || ^8.0 || ^9.0 || ^10.0
This package is auto-updated.
Last update: 2024-10-29 06:36:25 UTC
README
A service provider to add support for Laravel Passport and MongoDB.
Table of contents
Installation
Installation using composer:
composer require hypnodev/laravel-mongodb-passport
You need to have your App\Models\User
class extend hypnodev\Mongodb\Auth\User
instead of the default Illuminate\Foundation\Auth\User
. This user class extends laravel-mongodb eloquent user as well as adding all the standard and required authentication and laravel passport traits.
<?php namespace App\Models; use Illuminate\Notifications\Notifiable; use hypnodev\Mongodb\Auth\User as Authenticatable; class User extends Authenticatable { use Notifiable; }
Then now to install passport, but with Mongodb support, please run: php artisan mongodb-passport:install
Compatibility
For Laravel version < 5.x, add the service provider in config/app.php
:
hypndev\Mongodb\MongodbPassportServiceProvider::class,
For usage with Lumen, add the service provider in bootstrap/app.php
.
$app->register(hypndev\Mongodb\MongodbPassportServiceProvider::class);
The service provider will override the default laravel passport models in order to use mongodb's implementation of eloquent. There is no need to register any additional classes or add any additional configuration other than those outlined in Laravel Passport and MongoDB.