Adldap2-Laravel requires the following:
Run the following command in the root of your project:
composer require adldap2/adldap2-laravel
Note: If you are using laravel 5.5 or higher you can skip the service provider and facade registration and continue with publishing the configuration file.
Once finished, insert the service provider in your config/app.php
file:
Adldap\Laravel\AdldapServiceProvider::class,
Then insert the facade alias (if you're going to use it):
'Adldap' => Adldap\Laravel\Facades\Adldap::class
Finally, publish the ldap.php
configuration file by running:
php artisan vendor:publish --provider "Adldap\Laravel\AdldapServiceProvider"
Now you're all set! You're ready to move onto setup.