Installation
Requirements
- PHP 8.2 - 8.5
- TYPO3 13.4 LTS
Installation
Require the extension via Composer (recommended):
composer require cpsit/typo3-handlebars
Copied!
Or download it from TYPO3 extension repository.
Define dependencies
Attention
This is an essential step to ensure service configuration is interpreted correctly.
Each extension that depends on EXT:handlebars needs to explicitly define it as
dependency in the appropriate ext_ file:
# ext_emconf.php
$EM_CONF[$_EXTKEY] = [
'constraints' => [
'depends' => [
'handlebars' => '0.7.0-0.7.99',
],
],
];
Copied!
Otherwise, template paths are not evaluated in the right order and might get overridden.