LaravelPackages.net
Acme Inc.
Toggle sidebar
rymanalu/dusk-for-sentinel

Laravel Dusk for Sentinel.

2.891
0
v1.0.1
About rymanalu/dusk-for-sentinel

rymanalu/dusk-for-sentinel is a Laravel package for laravel dusk for sentinel.. It currently has 0 GitHub stars and 2.891 downloads on Packagist (latest version v1.0.1). Install it with composer require rymanalu/dusk-for-sentinel. Discover more Laravel packages by rymanalu or browse all Laravel packages to compare alternatives.

Last updated

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');
});

Star History Chart