kkeiper1103/sentry-manager

There is no license information available for the latest version (v1.2) of this package.

A Minimalistic, Laravel-Specific User Management Package. Provides User Registration, Login, and Update Views.

v1.2 2014-09-06 15:15 UTC

This package is not auto-updated.

Last update: 2024-05-25 13:54:36 UTC


README

A Laravel Package designed to provide User Management out of the box. Uses Cartalyst's Sentry.

Installation

Add "kkeiper1103/sentry-manager": "dev-master" to composer.json.

Add 'Kkeiper1103\SentryManager\SentryManagerServiceProvider' to config/app.php.

Modify the Sentry config to "users.model" => "User" (Or your Model for logging in)

Have your application's User model extend Cartalyst's Eloquent model.

use Cartalyst\Sentry\Users\Eloquent\User as SentryUser;

class User extends SentryUser implements UserInterface, RemindableInterface {