mirror of
https://github.com/php/web-pecl.git
synced 2026-03-24 07:12:15 +01:00
11 lines
338 B
PHP
11 lines
338 B
PHP
<?php
|
|
require_once __DIR__ . '/../vendor/twig/twig/lib/Twig/Autoloader.php';
|
|
Twig_Autoloader::register();
|
|
|
|
$loader = new Twig_Loader_Filesystem(realpath(__DIR__ . '/../templates/public'));
|
|
$twig = new Twig_Environment($loader, array(
|
|
'cache' => realpath(__DIR__ . '/../cache'),
|
|
'charset' => 'utf-8',
|
|
'auto_reload' => true
|
|
));
|