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
Requires
- php: >=5.4.0
- andheiberg/notify: 1.*
- cartalyst/sentry: 2.1.*
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2024-11-23 16:08:42 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 {