jakub-klapka/laravel-windows-auth

Service for IIS Windows authentication in Laravel
87 4
Install
composer require jakub-klapka/laravel-windows-auth
Latest Version:v1.0.0
PHP:>=7.0
License:GPL-3.0-or-later
Last Updated:Feb 13, 2018
Links: GitHub  ·  Packagist
Maintainer: jakub-klapka

Laravel Auth Guard for IIS Windows integrated authentication

Provides implementation of integrated authentication when using Windows auth option with IIS and Active Directory.

Installation

  1. Add JakubKlapka\LaravelWindowsAuth\Providers\ServiceProvider::class to your app.php.
  2. Run php artisan vendor:publish to export config file.
  3. In config\ad_auth.php set allowed AD domains (or don't)
  4. In config\auth.php set guard to 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.

Related Packages

erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

612,604,198 9,704
laravel/framework

The Laravel Framework.

554,918,666 34,821
laravel/tinker

Powerful REPL for the Laravel framework.

465,424,253 7,437