steveporter92 / laravel-mongodb-passport
A package to allow laravel/passport use with jenssegers/laravel-mongodb
Requires
- illuminate/auth: ^6.0
- illuminate/support: ^6.0
- jenssegers/mongodb: ^3.6
- laravel/passport: ^8.0
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2024-10-19 06:48:12 UTC
README
A service provider to add support for Laravel Passport and MongoDB.
Table of contents
Installation
Installation using composer:
composer require steveporter92/laravel-mongodb-passport
You need to have your App\User
class extend StevePorter92\Mongodb\Auth\User.php
instead of the default Illuminate\Foundation\Auth\User
. This user class extends larvel-mongodb eloquent user as well as adding all the standard and required authentication and laravel passport traits.
<?php namespace App; use Illuminate\Notifications\Notifiable; use StevePorter92\Mongodb\Auth\User as Authenticatable; class User extends Authenticatable { use Notifiable; }
Laravel version Compatibility
And add the service provider in config/app.php
:
StevePorter92\Mongodb\MongodbPassportServiceProvider::class,
For usage with Lumen, add the service provider in bootstrap/app.php
.
$app->register(StevePorter92\Mongodb\MongodbPassportServiceProvider::class);
The service provider will overide 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.