You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer config repositories.results git https://github.com/sasilen/cakephp-plugin-results.git
composer require sasilen/results
./bin/cake plugin load Sasilen/Results
./bin/cake migrations migrate -p Results
# /src/View/AppView.php
public function initialize(): void
{
parent::initialize();
$this->loadHelper('CakeDC/Users.AuthLink');
$this->loadHelper('Paginator', ['templates' => 'templates-paginator']);
$this->loadHelper('Form', ['templates' => 'templates-form']);
}