| Package Data | |
|---|---|
| Maintainer Username: | jakub-klapka |
| Maintainer Contact: | klapka@lumiart.cz (Jakub Klapka) |
| Package Create Date: | 2017-05-19 |
| Package Last Update: | 2018-02-13 |
| Language: | PHP |
| License: | GPL-3.0-or-later |
| Last Refreshed: | 2025-11-01 15:00:30 |
| Package Statistics | |
|---|---|
| Total Downloads: | 87 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 4 |
| Total Watchers: | 1 |
| Total Forks: | 2 |
| Total Open Issues: | 0 |
Provides implementation of integrated authentication when using Windows auth option with IIS and Active Directory.
JakubKlapka\LaravelWindowsAuth\Providers\ServiceProvider::class to your app.php.php artisan vendor:publish to export config file.windows, for example:'defaults' => [
'guard' => 'windows',
],
'guards' => [
'windows' => [
'driver' => 'windows',
'provider' => 'users'
]
Don't forget to implement \Illuminate\Contracts\Auth\Authenticatable in your User model, if you are not using default Eloquent one.