knovator / authentication
This is authentication module description
Requires
- laravel/passport: ^7.2|^10.0
- laravel/ui: ^3.0
- prettus/l5-repository: ^2.6
- robincsamuel/laravel-msg91: dev-master|^1.0
- dev-v2.0-branch
- v2.0
- v1.9
- v1.8
- v1.7
- v1.6
- v1.5
- v1.4
- v1.3
- v1.2
- v1.1
- dev-v1.9-branch
- dev-feature-common_branch
- dev-v1.8-branch
- dev-v1.7-branch
- dev-master
- dev-feature-authentication_user_multiple_accounts
- dev-v1.6-branch
- dev-feature-tag_v1.4_branch
- dev-v1.5-branch
- dev-v1.3-branch
- dev-v1.4-branch
- dev-feature-new_changes
- dev-v1.4-new_branch
- dev-hotfix-bookmark_filter
- dev-feature-add_bookmark
- dev-v1.2-branch
- dev-v1.1-branch
This package is not auto-updated.
Last update: 2025-03-30 17:26:27 UTC
README
This package used for user authentication with using secure laravel passport which provides a full OAuth2 server implementation for your Laravel application in a matter of minutes. [https://laravel.com/docs/5.7/passport]
Migration Added:
- Users
- Roles
- Users Roles (Pivot Table)
- Permissions
- Permissions Roles (Pivot Table)
Features:
- Handle user role with permissions based Authentication
Require the knovator/authentication package in your composer.json and update your dependencies:
You want to need add authentication repository in your composer.json file.
{
"type": "vcs",
"url": "git@github.com:knovator/authentication.git"
}
],
You want to need add multiple_column
in config/auth.php
User Providers sections
This package included
laravel/passport
and
prettus/l5-repository
packages.
composer require knovator/authentication
In your config/app.php
add Knovator\Authentication\AuthServiceProvider::class
to the end of the providers array:
Publish Configuration:
php artisan vendor:publish --provider "Knovator\Authentication\AuthServiceProvider"
website : [https://github.com/knovator/authentication ]