Skip to content

Instantly share code, notes, and snippets.

@mohnatus
Created April 13, 2019 13:32
Show Gist options
  • Select an option

  • Save mohnatus/a0a571953345c88a7ca2e46e77359aab to your computer and use it in GitHub Desktop.

Select an option

Save mohnatus/a0a571953345c88a7ca2e46e77359aab to your computer and use it in GitHub Desktop.
twig installation
<?php
require_once '../vendor/autoload.php';
use \Twig\Environment;
use \Twig\Loader\Filesystem;
use \Twig\Extension\Debug;
$loader = new Twig_Loader_Filesystem('./templates/');
$twig = new Twig_Environment($loader);
$twig->addExtension(new Twig_Extension_Debug());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment