You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require ciricihq/cake-metatags
Execute migration
bin/cake migrations migrate --plugin Cirici/Metatags
Execute seed
bin/cake migrations seed --plugin Cirici/Metatags
First you need to load the plugin. To do so, edit your bootstrap.php
file and
add line below:
Plugin::load('Metatags', ['bootstrap' => true]);