PHPackages                             volicon/ldap - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Search &amp; Filtering](/categories/search)
4. /
5. volicon/ldap

ActiveLibrary[Search &amp; Filtering](/categories/search)

volicon/ldap
============

Add Ldap Search possibilities to Laravel

v1.4.2(11y ago)036MITPHPPHP &gt;=5.4.0

Since Feb 14Pushed 10y ago4 watchersCompare

[ Source](https://github.com/Volicon/Ldap)[ Packagist](https://packagist.org/packages/volicon/ldap)[ RSS](/packages/volicon-ldap/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (2)Versions (8)Used By (0)

LDAP package for Laravel 4.x
============================

[](#ldap-package-for-laravel-4x)

This composer package is an attempt to provide a way to search through an Ldap Directory like you would query a database with Eloquent.

Installing
----------

[](#installing)

Declare a dependency on this package in your composer.json file:

```
"require": {
	"xavrsl/ldap": "v1.4"
},
```

Next, run **composer update** to pull in the code.

Add the service provider to config/app :

```
'Xavrsl\Ldap\LdapServiceProvider',
```

Add the facade to the alias array (also in config/app):

```
'Ldap' => 'Xavrsl\Ldap\Facades\Ldap',
```

You then need to publish and customize the config file to indicate the location of your ldap server and also set your dn, attributes etc.

```
php artisan config:publish xavrsl/ldap

```

You're now ready to use this package !

Usage
-----

[](#usage)

First remember to set ALL your config parameters. All sections have been well documented in the comments. Any attribute that you want to retrieve MUST be specified in the 'attributes' array.

- Return an attribute from one member of your organisation :

```
// First possibility, with find/where methods and get
Ldap::find('people')->where('uid', 8162)->get('displayname');

// Second possibility, using an alias for the get method
Ldap::find('people')->where('uid', 8162)->displayname;

// Third possibility, attribute in camelCase format
Ldap::find('people')->where('uid', 8162)->displayName;

// If default attribute is set to 'uid' in conf, you can use the short method
Ldap::people(8162)->displayname;
```

All those possibilities should return the same string (our user's displayname) :

```
Bobby Blake

```

- Return multiple attributes for a single member of organisation :

```
// Let's directly use the short method
Ldap::people(8162)->get('displayname, mail');

// May as well use an array instead of a string
Ldap::people(8162)->get(['displayName', 'mail']);
```

This should return :

```
array(1) [
    '8162' => array(2) [
        'displayname' => string (11) "Bobby Blake"
        'mail' => string (22) "bobby.blake@domain.org"
    ]
]
```

If you change the key in your config to some attribute like 'login' for exemple, you get :

```
array(1) [
    'bobblake' => array(2) [
        'displayname' => string (11) "Bobby Blake"
        'mail' => string (22) "bobby.blake@domain.org"
    ]
]
```

**NOTE :** You don't need to add the 'key' attribute's value in the 'attributes' array in the config. The package does that for you.

- Return multiple attributes from multiple members of the organisation :

```
// Let's use the short method again
Ldap::people('8162, 128')->get('displayname, mail');

// Same thing using arrays
Ldap::people(['8162', '128'])->get(['displayName', 'mail']);

// Longer syntax
Ldap::find('people')->where('uid', ['8162', '128'])->get(['displayName', 'mail']);

// Base your search on another attribute
Ldap::find('people')->where('login', ['bobblake', 'johndoe'])->get(['displayName', 'mail']);
```

This should return :

```
array(2) [
    '108' => array(2) [
        'displayname' => string (8) "John Doe"
        'mail' => string (20) "john.doe@domain.org"
    ]
    '8162' => array(2) [
        'displayname' => string (11) "Bobby Blake"
        'mail' => string (22) "bobby.blake@domain.org"
    ]
]
```

You can also return all the attributes you've set in the 'attributes' config property :

```
// The long way
Ldap::find('people')->where('login', ['bobblake', 'johndoe'])->get();

// The short way
Ldap::people('108, 8162')->get();
```

- Query the Ldap Directory based on a wildcard :

```
// The long way
Ldap::find('people')->where('login', 'bob*')->get(['displayName', 'mail']);

// The short way (assuming you have set the 'filter' attribute to 'login' in config)
Ldap::people('bob*')->get(['displayName', 'mail']);

// Also works with multiple wildcards
Ldap::people('bob*, john*')->get(['displayName', 'mail']);
```

You get a result looking something like this :

```
array(2) [
    '108' => array(2) [
        'displayname' => string (8) "John Doe"
        'mail' => string (20) "john.doe@domain.org"
    ]
    '4021' => array(2) [
        'displayname' => string (10) "John Smith"
        'mail' => string (22) "john.smith@domain.org"
    ]
    '8162' => array(2) [
        'displayname' => string (11) "Bobby Blake"
        'mail' => string (22) "bobby.blake@domain.org"
    ]
    '9520' => array(2) [
        'displayname' => string (12) "Bob McCormac"
        'mail' => string (24) "bobby.mccormac@domain.org"
    ]
]
```

You get the idea !!

- Authenticate against the Ldap Directory :

```
// Depending on the filter attribute you've set in the config
Ldap::auth('bobblake', 'm7V3ryStr0ngP@ssw0rd!')
```

Will simply return **TRUE** or **FALSE**.

**NOTE :** Don't forget to set the dn attribute in config for user authentication.

---

TODOs :
-------

[](#todos-)

There is still a lot of work ahead to make this package complete. Here's a list of what you could expect in the future :

- Create / update attributes from the Ldap. For now, the package can only read the Ldap.
- Query multiple Organisation Units (Ldap branches, or OU. ex. : People, Groups, Mail, ...). This should work pretty soon...
- Use Active Directory and Open Ldap. For now, only Open Ldap directories work.

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 80.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~140 days

Recently: every ~197 days

Total

7

Last Release

3680d ago

Major Versions

v1.4.2 → v2.0.x-dev2016-06-05

PHP version history (3 changes)v1.1PHP &gt;=5.3.0

v1.4PHP &gt;=5.4.0

v2.0.x-devPHP &gt;=5.5.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/f223e4854d3d6cb5f4572905fb236d1bbb9e8cd5158d979a32dd85dda0475ef9?d=identicon)[nadavvin](/maintainers/nadavvin)

---

Top Contributors

[![XavRsl](https://avatars.githubusercontent.com/u/1185840?v=4)](https://github.com/XavRsl "XavRsl (25 commits)")[![nadavvin](https://avatars.githubusercontent.com/u/210357?v=4)](https://github.com/nadavvin "nadavvin (4 commits)")[![stristr](https://avatars.githubusercontent.com/u/1203925?v=4)](https://github.com/stristr "stristr (2 commits)")

---

Tags

searchlaravelldap

### Embed Badge

![Health badge](/badges/volicon-ldap/health.svg)

```
[![Health](https://phpackages.com/badges/volicon-ldap/health.svg)](https://phpackages.com/packages/volicon-ldap)
```

###  Alternatives

[mailerlite/laravel-elasticsearch

An easy way to use the official PHP ElasticSearch client in your Laravel applications.

936603.4k2](/packages/mailerlite-laravel-elasticsearch)[algolia/scout-extended

Scout Extended extends Laravel Scout adding algolia-specific features

4196.7M6](/packages/algolia-scout-extended)[jeroen-g/explorer

Next-gen Elasticsearch driver for Laravel Scout.

399672.8k](/packages/jeroen-g-explorer)[directorytree/ldaprecord-laravel

LDAP Authentication &amp; Management for Laravel.

5752.3M18](/packages/directorytree-ldaprecord-laravel)[xavrsl/ldap

Add Ldap Search possibilities to Laravel

233.9k](/packages/xavrsl-ldap)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
