rymanalu / dusk-for-sentinel by rymanalu

Laravel Dusk for Sentinel.
2,890
0
2
Package Data
Maintainer Username: rymanalu
Maintainer Contact: rymanalu@gmail.com (Roni Yusuf Manalu)
Package Create Date: 2017-06-02
Package Last Update: 2019-07-19
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:00:22
Package Statistics
Total Downloads: 2,890
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 5
Total Open Issues: 1

Laravel Dusk for Sentinel

Build Status

This package override the routes that used by loginAs method in Laravel Dusk so it can be used for Laravel project who using the Sentinel package for the authentication, since the default implementation of that method is using the Laravel Authentication service.

Installation

First, install this package via the Composer package manager:

composer require rymanalu/dusk-for-sentinel

It is fine if you already install the Laravel Dusk before or only install this package.

Register the Rymanalu\DuskForSentinel\DuskForSentinelServiceProvider in your AppServiceProvider. If you already register the Laravel\Dusk\DuskServiceProvider, just replace it to this provider:

use Rymanalu\DuskForSentinel\DuskForSentinelServiceProvider;

/**
 * Register any application services.
 *
 * @return void
 */
public function register()
{
    if ($this->app->environment('local', 'testing')) {
        $this->app->register(DuskForSentinelServiceProvider::class);
    }
}

You may run php artisan dusk:install if you haven't already publish the Dusk package or you can check out the documentation for further Dusk configuration.

Usage

So now, you can authenticate the Sentinel User object with the loginAs method in your browser test script:

$this->browse(function (Browser $browser) {
    $browser->loginAs(Sentinel::findById(1))
            ->visit('/home');
});