steefaan / cakephp-multi-column-authenticate
Provides multi column form authentications.
Package info
github.com/steefaan/cakephp-multi-column-authenticate
Type:cakephp-plugin
pkg:composer/steefaan/cakephp-multi-column-authenticate
dev-master
2016-03-13 00:07 UTC
Requires
- php: >=5.4.0
- cakephp/cakephp: ~3.0
Requires (Dev)
- phpunit/phpunit: 4.1.*
This package is not auto-updated.
Last update: 2026-03-01 03:20:44 UTC
README
Provides multi column form authentications.
Requirements
- CakePHP 3.x
- PHP 5.4.16 or greater
Installation
[Using Composer]
composer require steefaan/cakephp-multi-column-authenticate:dev-master
Enable plugin
Load the plugin in your app's config/bootstrap.php file:
Plugin::load('MultiColumnAuthenticate');
Usage
$this->loadComponent('Auth', [
'authenticate' => [
'MultiColumnAuthenticate.MultiColumn' => [
'columns' => [
'username',
'email'
]
]
]
]);