anndro / SentryLdap by anndro
forked from cartalyst/sentry

PHP 5.3+ Fully-featured Authentication & Authorization System with Ldap
346
22
3
Package Data
Maintainer Username: anndro
Maintainer Contact: ben.corlett@cartalyst.com (Ben Corlett)
Package Create Date: 2013-06-15
Package Last Update: 2015-06-18
Home Page: https://github.com/anndro/ & http://www.cartalyst.com
Language: PHP
License: BSD-3-Clause
Last Refreshed: 2024-04-23 03:03:55
Package Statistics
Total Downloads: 346
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 22
Total Watchers: 3
Total Forks: 8
Total Open Issues: 2

SentryLdap

SentryLdap is a fork of Cartalyst Sentry library. Added new features like ldap authentication.SentryLdap is a PHP 5.3+ fully-featured authentication & authorization system. It also provides additional features such as user groups and additional security features.

This branch works with Laravel 4.2 !

Sentry is a framework agnostic set of interfaces with default implementations, though you can substitute any implementations you see fit.

Features

It also provides additional features such as user groups and additional security features:

  • Ldap login

Sentry features

  • Configurable authentication (can use any type of authentication required, such as username or email)
  • Authorization
  • Activation of user (optional)
  • Groups and group permissions
  • "Remember me"
  • User suspension
  • Login throttling (optional)
  • User banning
  • Password resetting
  • User data
  • Interface driven - switch out your own implementations at will

Installation

Installation of SentryLdap is very easy. Open your composer.json file and add the following to the require array:

"anndro/sentry_ldap": "2.1.*"

to your composer.json file then follow one of the following guides to get SentryLdap working with your favorite framework or on it's own:

  1. Install in Laravel 4
  2. Install in FuelPHP 1
  3. Install in CodeIgniter 3

Using

This library is still beta for ldap functions. You have to change this lines in your config file.

'ldap' => array(
	'server'	=> 'ldapserver',
	'port'		=> 'ldapport'
),

After this settings you have to follow sentry orginal document file. You can use ldap login like this;

// Set login credentials
$credentials = array(
    'userid'    => 'demo',
    'password' => 'demo',
);

// Try to authenticate the user
$user = Sentry::authenticateWithLdap($credentials, false);

Also have Sentry::authenticateWithLdapAndRemember($credentials); function.

Support

We offer support through our help forums, on IRC at #cartalyst for normal sentry issues, and through GitHub issues (bugs only) for Ldap issues.