jobmetric/authentication

This is a Laravel authentication package that can add user-side login forms to Laravel.

dev-master 2023-01-07 17:45 UTC

This package is auto-updated.

Last update: 2024-09-07 21:18:14 UTC


README

This is a package for creating login forms and user authentication, as well as managing their access level in Laravel. This package helps you treat it as a JWT token as well as a session and also provides them to you as an API.

Install via composer

Run the following command to pull in the latest version:

composer require jobmetric/authentication

Add service provider

Add the service provider to the providers array in the config/app.php config file as follows:

'providers' => [

    ...

    JobMetric\Authentication\Providers\AuthenticationServiceProvider::class,
]

Publish the config

Copy the config file from vendor/jobmetric/authentication/config/config.php to config folder of your Laravel application and rename it to authentication.php

Run the following command to publish the package config file:

php artisan vendor:publish --provider="JobMetric\Authentication\Providers\AuthenticationServiceProvider" --tag="config"

You should now have a config/authentication.php file that allows you to configure the basics of this package.

Publish Views

You can use predefined views in this package.

php artisan vendor:publish --provider="JobMetric\Authentication\Providers\AuthenticationServiceProvider" --tag="views"

Documentation