Coder-Scoop-Inc / laravel-ldap by SamyOteroGlez

Easy to use laravel ldap api
20
0
2
Package Data
Maintainer Username: SamyOteroGlez
Maintainer Contact: otero.glez.samy@gmail.com (SamyOteroGlez)
Package Create Date: 2017-06-03
Package Last Update: 2017-06-06
Language: PHP
License: MIT
Last Refreshed: 2024-04-26 03:21:58
Package Statistics
Total Downloads: 20
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

laravel-ldap

Easy to use ldap api for laravel

Install

  • You can install directly using composer composer require coderscoop/laravel-ldap

  • Or include the package to your composer.json


"require": {
    "coderscoop/laravel-ldap": "*"
}

  • Or download it directly from the github repository

"require": {
    "coderscoop/laravel-ldap": "dev-master"
},
"repositories": [
    {
        "type": "git",
        "url": "git@github.com:Coder-Scoop-Inc/laravel-ldap.git"
    }
]

  • And run composer install or composer update

Requirements

  • php ldap module is require to use this package

Usage

  • Add Coderscoop\LaravelLdap\LdapServiceProvider::class, to the providers array in config\app.php.

  • Add 'Ldap' => Coderscoop\LaravelLdap\Facade\LdapFacade::class, to the aliases array in config\app.php.

  • Include use Ldap; to any class you want

  • And then you can do Ldap::newInstance();

Todo

  • Step by step basic configuration/usage