You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download the most current version as ZIP, unzip it and rename the extracted folder to twig.
Put the twig folder inside your plugins folder and you are done.
via GitHub
Just clone the repository directly into your app.
cd plugins | git clone git://github.com/m3nt0r/cakephp-twig-view.git twig
Enabling the View
Inside your app_controller.php add the following:
class AppController extends Controller {
public $view = 'Twig.Twig'; // use twig
}