nusait / usermanager-l4 by nusait

205
0
5
Package Data
Maintainer Username: nusait
Maintainer Contact: hao@northwestern.edu (Hao Luo)
Package Create Date: 2013-10-01
Package Last Update: 2014-08-23
Language: PHP
License: Unknown
Last Refreshed: 2024-04-18 03:05:12
Package Statistics
Total Downloads: 205
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 5
Total Forks: 0
Total Open Issues: 0

UserManager Artisan Command Package

Available Commands

usermanager:adduser
usermanager:listusers

To Install

  1. Include the following in your composer.json
"nusait/usermanager-l4" : "*"
  1. Run
composer update
  1. Include the following in your app.php in your config folder
'Nusait\UsermanagerL4\UsermanagerL4ServiceProvider',
  1. Publish the configuration
php artisan config:publish nusait/usermanager-l4
  1. If you don't have a ldap.php in your app/config folder, Create one with the following:
<?php
	return array(
		'rdn' => 'your rdn string',
		'password' => 'your password'
	);
  1. Include Traits in your User and Role models

(User Model)

 ...
class User extends Eloquent implements UserInterface, RemindableInterface {
	use Nusait\UsermanagerL4\Traits\UserManagerUserRelatable;
 ...

(Role Model)

 ...
class Role extends Eloquent {
	use Nusait\UsermanagerL4\Traits\UserManagerRoleRelatable;
 ...

To Use

Run (on production server) Example:

php artisan usermanager:adduser netid --role="admin"