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-11-15 15:24:01 |
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 |
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.
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.
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');
});