rymanalu / dusk-for-sentinel
Laravel Dusk for Sentinel.
Installs: 2 890
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 5
Open Issues: 1
Requires
- php: >=5.6.4
- cartalyst/sentinel: ^2.0
- illuminate/contracts: >=5.4 <5.9
- illuminate/support: >=5.4 <5.9
- laravel/dusk: >=1.0 <=5.3
Requires (Dev)
- mockery/mockery: >=0.9.6
- phpunit/phpunit: >=5.7
This package is auto-updated.
Last update: 2024-10-19 21:41:18 UTC
README
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'); });