ageekdev/dev-login

Developer Login for Laravel

v3.0.0 2024-04-09 02:58 UTC

README

Latest Version on Packagist Laravel 9.x Laravel 10.x GitHub Tests Action Status Total Downloads

This package allows you to login the developer associate actions (e.g.log views).

dev login screenshot

Installation

You can install this package via composer using this command:

composer require ageekdev/dev-login

The package will automatically register itself.

After installing Dev Login, you may publish its assets using the dev:install Artisan command:

php artisan dev:install

Setup developer account

Setup new dev user account.

php artisan dev:user

USAGE

Dev Login default login URI is the /dev/login.

UseDevLoginGuard Middleware

Laravel official packages uses $request->user() to get the user in gate. The default guard is user guard. So You can use UseDevLoginGuard middleware to override this behaviour.

Telescope

You must replace Authorize with UseDevLoginGuard middleware applied to Telescope routes in telescope.middleware config value.

config/telescope.php

<?php

- use Laravel\Telescope\Http\Middleware\Authorize;
+ use AgeekDev\DevLogin\Http\Middleware\UseDevLoginGuard;
use Laravel\Telescope\Watchers;

...

'middleware' => [
   'web',
-   Authorize::class,
+   UseDevLoginGuard::class,
],

...

Vapor UI

You must replace EnsureUserIsAuthorized with UseDevLoginGuard middleware applied to Vapor routes in vapor-ui.middleware config value.

config/vapor-ui.php

<?php

- use Laravel\VaporUi\Http\Middleware\EnsureUserIsAuthorized;
+ use AgeekDev\DevLogin\Http\Middleware\UseDevLoginGuard;
use Laravel\Telescope\Watchers;

...

'middleware' => [
   'web',
-   EnsureUserIsAuthorized::class,
+   UseDevLoginGuard::class,
],

...

Testing

You can run the tests with:

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

License

The MIT License (MIT). Please see License File for more information.