gringlas / cakephp-ep-authenticate
Authenticate Object for stateless authenticate. It can be used to get permanent authentication during development.
Installs: 527
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=5.6
Requires (Dev)
- cakephp/cakephp: ^3.5
- phpunit/phpunit: ^5.7|^6.0
This package is auto-updated.
Last update: 2025-03-24 12:09:25 UTC
README
This little plugin provides an Authenticate adapter for stateless Authentication. It allows you to specify a special header, which contains a token to authorize in your application. This can be very helpful for testing, be it unittests or manual tests with API clients (like Postman) or directly in your client software.
Installation
composer require gringlas/cakephp-ep-authenticate dev-master
Usage
Just add gringlas/EPAuthenticate.EP
to your AuthComponent authenticate, like
$this->loacComponent('Auth', [
'authenticate' => [
'gringlas/EPAuthenticate.EP' => [
'header' => 'EP-Authorization',
'userId' => 1,
'debugOnly' => false,
'password' => 'EPme',
],
...
);
Send add set header
and password
to your next request and get authenticated as User with id userid
.
Configuration
userId
: Id of User data, which should be authed, defaults to 1debugOnly
: only use AuthenticateAdapter whenenv('debug', true)
, defaults to trueheader
: Name of header, defaults toEP-Authorization
password
: Value of header, defaults toEPme
ToDo
- Add custom UserModel, so far only users from DB table are supported
- Add custom finder method, so far only a
$this->User->get($this->getConfig['user'])
is used to get User data.