PHP code example of dyrynda / laravel-ldap

1. Go to this page and download the library: Download dyrynda/laravel-ldap library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dyrynda / laravel-ldap example snippets


'sync_attributes' => [
    'password_updated_at' => 'pwdlastset',
],

Schema::table('users', function (Blueprint $table) {
    $table->unsignedBigInteger('password_updated_at')->nullable()->default(null);
});

'disable_while_testing' => true,