visol / typo3-handlebars
This is a TYPO3 CMS extension to render native handlebars templates
Package info
github.com/visol/ext-handlebars
Type:typo3-cms-extension
pkg:composer/visol/typo3-handlebars
4.0.0
2025-04-22 08:17 UTC
Requires
- php: >= 8.0 < 8.4
- typo3/cms-core: ^12.4
- typo3/cms-extbase: ^12.4
- typo3fluid/fluid: ^2.7
- zordius/lightncandy: ^1.2
Requires (Dev)
- phpstan/phpstan: ^1.10
This package is auto-updated.
Last update: 2026-05-28 23:03:43 UTC
README
This is a TYPO3 CMS extension to render native handlebars templates
Helper
Within the extension there are a few Handlebars helpers configured by default,
such as content, block, json, lookup. On the top of that we can add new
custom handlebars helper which can be declared in ext_localconf.php as follows
\Visol\Handlebars\HelperRegistry::getInstance()->register(
'foo',
function ($labels, $key) {
return $labels[$key];
}
);