Всем привет. Вопрос, возможно ли установить Twig 2.x без Composer, через spl_autoload?
Не могу понять как организовать автозагрузку Twig 2.x без Composer. Есть у меня примерный готовый код с GIT:
Twig 2.0 without Composer<?php
spl_autoload_register(function ($class) {
// project-specific namespace prefix
$prefix = 'Twig';
// base directory for the namespace prefix
$base_dir = __DIR__ . '/Twig/lib/Twig/';
// does the class use the namespace prefix?
$len = strlen($prefix);
if (strncmp($prefix, $class, $len) !== 0) {
// no, move to the next registered autoloader
return;
}
// get the relative class name
$relative_class = substr($class, $len);
// replace the namespace prefix with the base directory, replace namespace
// separators with directory separators in the relative class name, append
// with .php
$file = $base_dir . str_replace('_', '/', $relative_class) . '.php';
// if the file exists, require it
if (file_exists($file)) {
require $file;
}
});
?>
Не могу понять как прикрутить этот код к Twig 2.x
Мой отрывок загрузки от Twig 1.x:
$tpl_path = ROOT_DIR . '/templates/' . $config['cp_tpl'];
require_once ENGINE_DIR . '/lib/Twig/Autoloader.php';
Twig_Autoloader::register();
$loader = new Twig_Loader_Filesystem($tpl_path);
$twig = new Twig_Environment($loader, array(
'cache' => ENGINE_DIR . '/cache/twig',
'auto_reload' => true
));
Help me!