steefaan / cakephp-multi-column-authenticate
Provides multi column form authentications.
Installs: 2 653
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
Type:cakephp-plugin
Requires
- php: >=5.4.0
- cakephp/cakephp: ~3.0
Requires (Dev)
- phpunit/phpunit: 4.1.*
This package is not auto-updated.
Last update: 2025-01-18 21:08:33 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'
]
]
]
]);