Выяснение установленной версии ветки Есть ли способ узнать мою установленную версию Twig? Что-то вроде <p>The current version is {% twig.version %}</p> (хотя я знаю, что даже близко к тому, чтобы быть прав). Ответ 1 Попробуй: <p>The current version is {{ constant('Twig_Environment::VERSION') }}</p> Ответ 2 Вы найдете это в vendor/twig/twig/lib/Twig/Environment.php /** * Stores the Twig configuration. * * @author Fabien Potencier <[email protected]> */ class Twig_Environment { const VERSION = '1.24.0'; Для более поздних версий Twig, например, 2.7 и более поздних версий, вы найдете его в /vendor/twig/twig/src/Environment.php /** * Stores the Twig configuration. * * @author Fabien Potencier <[email protected]> */ class Environment { const VERSION = '2.9.0';
Ответ 2 Вы найдете это в vendor/twig/twig/lib/Twig/Environment.php /** * Stores the Twig configuration. * * @author Fabien Potencier <[email protected]> */ class Twig_Environment { const VERSION = '1.24.0'; Для более поздних версий Twig, например, 2.7 и более поздних версий, вы найдете его в /vendor/twig/twig/src/Environment.php /** * Stores the Twig configuration. * * @author Fabien Potencier <[email protected]> */ class Environment { const VERSION = '2.9.0';