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
Requires
- php: >=5.3.0
- composer/installers: *
This package is auto-updated.
Last update: 2024-11-06 08:46:28 UTC
README
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.