Hi, I’m trying to install Authentication Plugin on cakephp 3.9 app
I followed the steps in
https://book.cakephp.org/authentication/1/en/index.html
I installed the plugin using composer and modified Application.php and AppController.php
But I getting the following error
Fatal error: Interface ‘Authentication\AuthenticationServiceProviderInterface’ not found in
I added the following lines at the begining of Application.php
use Authentication\AuthenticationService; use Authentication\AuthenticationServiceProviderInterface; use Authentication\Middleware\AuthenticationMiddleware; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface;
My cakephp installation is up to date. What could be wrong?
Where should I check if the source file for AuthenticationServiceProviderInterface exists?
Thanks