lucasff/cakephp-users

CakePHP Users Plugin

Installs: 18

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 1

Open Issues: 0

Type:cakephp-plugin

dev-master 2014-04-17 17:22 UTC

This package is auto-updated.

Last update: 2024-05-06 07:41:56 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

CakePHP Users Plugin

Users Plugin, focused on details to easy user management for CakePHP 2.x

Requirements

  • CakePHP 2.x
  • Bootstrap 3.x (3.0 support)

Installation

Ensure require is present in composer.json. This will install the plugin into Plugin/BoostCake:

{
	"require": {
		"lucasff/cakephp-users": "dev-master"
	}
}

Enable plugin

You need to enable the plugin in your app/Config/bootstrap.php file:

CakePlugin::load('Users');

If you are already using CakePlugin::loadAll();, then this is not necessary.