Twig is a template language for PHP.
Twig uses a syntax similar to the Django and Jinja template languages which inspired the Twig runtime environment.
- PHP ≥ 8.2 (uses enums, readonly properties, intersection types).
- CodeIgniter 4.7+ (
codeigniter4/framework: ^4.7). - Twig 3.x (
twig/twig: ^3.1.1).
The CI matrix runs on PHP 8.2, 8.3, 8.4 and 8.5.
Audit follow-ups on top of v3.x — backwards-compatible:
- Security
- Compiled templates served through the CI cache backend are now signed
with HMAC-SHA256 and verified before
eval(). A compromised cache can no longer feed arbitrary PHP into the host process. - Public APIs that touch the filesystem (
addPath,invalidateTemplate*,invalidateNamespace, matching CLI commands) reject path traversal, null bytes and out-of-charset names throughTemplateNameValidator. - Persisted JSON (compile index, warmup summary, invalidations,
discovery snapshot) is decoded through
PersistenceDecoderwith type validation; tampered or wrong-shape payloads are dropped instead of crashing.
- Compiled templates served through the CI cache backend are now signed
with HMAC-SHA256 and verified before
- Operational tooling
php spark twig:lintvalidates Twig syntax without rendering — safe in CI/CD pipelines, returns non-zero on the first error, supports--json.php spark twig:doctorruns a health check (paths, cache writability, APCu, reconstructed indexes, Twig version) and exits non-zero on errors.- Per-template render profiler in
getDiagnostics()['performance']exposesper_templateandtop_templates(count / total / avg / max ms). - Optional PSR-3 logger injection via
new Twig($config, $logger)or$twig->setLogger($logger). Falls back tolog_message()when unset. - All CLI commands now return integer exit codes (
EXIT_SUCCESS,EXIT_USER_INPUT,EXIT_ERROR). - New helpers:
twig_render(),twig_display(),twig_capture().
- Internal
Daycry\Twig\Contracts\— service interfaces (Discovery, CacheManager, Invalidator, DynamicRegistry) for mocking and alternative implementations.Daycry\Twig\Constants\—TwigEvent,TwigCacheKey,CacheSourceenums replacing magic strings.Daycry\Twig\Config\CapabilitiesProfile— readonly value object that resolves the lean/full matrix (lifted out of the facade).AbstractTwigCommandconsolidates the shared scaffolding of the 11 CLI commands.
See CHANGELOG.md for the full diff and docs/TROUBLESHOOTING.md for
common-case investigations.
Major architectural refactor (internal) with backward‑compatible public API:
- Extracted modular services:
- TemplateDiscovery – template enumeration & in-process caching
- TemplateCacheManager – compile index (compile-index.json) & compiled state tracking
- DynamicRegistry – runtime registration of functions & filters
- TemplateInvalidator – single/batch/namespace cache invalidation
- New listing filters: namespace + glob/pattern (e.g.
@admin/*,emails/user_*). - Optimized batch invalidation (single directory scan for multiple templates).
- Warmup now persists & reuses a compile index; skipping already compiled templates is faster.
- Structured logging normalized:
event=twig.* key=valuepairs (update log parsers if any). - Namespace-specific autoescape strategy mapping (
setAutoescapeForNamespace). Twigfacade slimmed; internal arrays removed in favor of service classes.
Service Architecture Guide: See docs/SERVICES.md for an in-depth explanation of the new modular internal services (Discovery, CacheManager, DynamicRegistry, Invalidator) and advanced usage patterns.
Upgrade Notes:
- No breaking changes for typical usage (render/display/registerFunction/registerFilter/warmup/invalidate APIs preserved).
- If you accessed internal properties like
$compiledTemplatesdirectly, migrate to the public methods (warmup,listTemplates,invalidate*). - Log format changed; adjust any monitoring tools expecting old message text.
- Version bumped to v3 to reflect the internal restructuring & new operational capabilities rather than surface API breaks.
Discovery snapshot, preload and APCu acceleration are automatic in the default profile (leanMode = false). In Lean Mode they are disabled unless explicitly re-enabled with enableDiscoverySnapshot.
Runtime features are governed by a profile (Full vs Lean) plus nullable overrides:
| Capability | Full (leanMode = false) | Lean (leanMode = true) | Override null |
Override true |
Override false |
|---|---|---|---|---|---|
| Discovery Snapshot (persist + preload + APCu) | ON | OFF | Inherit profile | Force ON | Force OFF |
| Warmup Summary Persistence | ON | OFF | Inherit profile | Force ON | Force OFF |
| Invalidation History (last + cumulative) | ON | OFF | Inherit profile | Force ON | Force OFF |
| Dynamic Metrics (function/filter counts) | ON | OFF | Inherit profile | Force ON | Force OFF |
| Extended Diagnostics (names lists, static counts) | ON | OFF | Inherit profile | Force ON | Force OFF |
null means "inherit from the profile". Setting an explicit true /
false always wins over the Full/Lean default.
The library always calls service('cache'):
- If the handler is a
FileHandler(class name containsFile) ⇒filesystemmode usingcachePath(defaultWRITEPATH/cache/twig). - Any other handler ⇒
servicemode (wrapped inCICacheAdapterfor compiled templates and indexes; payloads are HMAC-signed beforeeval()).
Diagnostics (getDiagnostics()['cache']):
The prefix strategy was further simplified: we no longer embed the textual global cache prefix into Twig keys. Instead only two possibilities exist:
- Global
Config\Cache::$prefixends with_(non-empty) ⇒ prefix used:_twig_ - Otherwise ⇒ prefix used:
twig_
The previous form (<global> + '_') . 'twig_' was removed to avoid accidental duplication and shorten keys. The removed per-Twig cachePrefix override remains removed.
Examples:
''→twig_'app'→twig_'app_'→_twig_'mediaprous_'→_twig_
Applies uniformly to compiled templates, compile index, discovery snapshot, warmup summary & invalidation history.
Diagnostics expose the resolved value at diagnostics['cache']['prefix'].
Possible keys: compile_index, discovery_snapshot, warmup,
invalidations.
Value: { "medium": "file" | "ci" } where ci indicates the cache service
backend (any non-File handler). Example:
"persistence": {
"compile_index": { "medium": "ci" },
"discovery_snapshot": { "medium": "ci" },
"warmup": { "medium": "ci" },
"invalidations": { "medium": "ci" }
}If the compile index (compile-index.json or remote key) loads empty but
compiled PHP files are detected on disk (upgrade or manual copy), a
synthetic index is built with unknown_N names. The
reconstructed_index = true flag warns of this state — run a warmup to
regenerate a real index.
Lean Mode drops entire sections (the keys disappear) to keep the payload
small. A lean instance with no overrides only exposes: renders,
last_render_view, environment_resets, cache, performance,
capabilities, persistence (plus discovery when forced). Setting any
override to true re-introduces just that section.
For large installs or pages with heavy JavaScript, the Twig toolbar panel can add latency if it renders every section (discovery, dynamics, templates) on each request. The flags below trim the rendered output directly — there is no longer a deferred / async-fetch mode (it was removed to avoid route recursion).
Config flags (on Config\Twig):
| Flag | Default | Effect |
|---|---|---|
toolbarMinimal |
false |
When true only Core + Cache + Performance; skips Discovery, Warmup, Invalidations, Dynamics, Templates, Capabilities, Persistence. |
toolbarShowTemplates |
true |
Show / hide the templates table. Ignored when toolbarMinimal=true. |
toolbarMaxTemplates |
50 |
Hard cap on rows in the templates table. |
toolbarShowCapabilities |
true |
Show the capabilities section. Ignored when minimal. |
toolbarShowPersistence |
true |
Show the persistence-medium section. Ignored when minimal. |
Maximum-performance dev view:
$config->toolbarMinimal = true; // only essential metricsIntermediate profile without the templates table but keeping capabilities and persistence:
$config->toolbarMinimal = false;
$config->toolbarShowTemplates = false;Suggested strategy:
- Start with
toolbarMinimal=trueif you only debug counts and cache. - Add sections one at a time: turn minimal off, then disable only what
you don't need (
toolbarShowTemplates=false, lowertoolbarMaxTemplates). - Use Lean Mode to also shrink the JSON structure when consuming diagnostics externally.
Notes:
- All sections render inline; there are no secondary requests.
- No JavaScript dependency for loading dynamic panel content.
- The optimisations target avoiding unnecessary HTML construction.
Force discovery snapshot in Lean Mode:
$config->leanMode = true;
$config->enableDiscoverySnapshot = true; // snapshot only; warmupSummary, invalidations, metrics stay OFFList templates with compiled status:
$twig->listTemplates(true); // [['name'=>'welcome','compiled'=>true], ...]Warm up and inspect the summary:
$twig->warmup(['welcome']);
print_r($twig->getDiagnostics()['warmup']);Use the package with composer install
> composer require daycry/twig
Run command:
> php spark twig:publish
This command will copy a config file to your app namespace.
Then you can adjust it to your needs. By default file will be present in app/Config/Twig.php.
$config = new \Daycry\Twig\Config\Twig();
// Optional: enable strict variables (throw on undefined)
$config->strictVariables = true;
// Optional: Lean Mode (disable non-essential persistence & diagnostics)
$config->leanMode = true; // minimal overhead
$config->enableDiscoverySnapshot = true; // re-enable snapshot in lean if you have many templates
// Custom template paths (optionally with namespace)
$config->paths = [APPPATH.'Module/Views', [APPPATH.'Admin/Views','admin']];
// Create instance
$twig = new \Daycry\Twig\Twig($config);Profiles Summary:
- Full (default): snapshot + preload + APCu (if available) + all diagnostics.
- Lean: minimal persistence; selectively re-add capabilities via nullable overrides.
$twig = new \Daycry\Twig\Twig();
$twig->display( 'file.html', [] );$twig = \Config\Services::twig();
$twig->display( 'file.html', [] );In your BaseController - $helpers array, add an element with your helper filename.
protected $helpers = [ 'twig_helper' ];The helper provides a few convenience wrappers around the shared service:
// Same instance as Services::twig()
$twig = twig_instance();
$twig->display('file.html', []);
// Render-and-return / render-and-echo without resolving the service by hand
$html = twig_render('emails/welcome', ['name' => 'Daycry']);
twig_display('layout/main', ['title' => 'Home']);
// Capture stdout from a callable as a string
$captured = twig_capture(static fn () => twig_display('partials/sidebar'));$twig = new \Daycry\Twig\Twig();
$session = \Config\Services::session();
$session->set( array( 'name' => 'Daycry' ) );
$twig->addGlobal( 'session', $session );
$twig->display( 'file.html', [] );<!DOCTYPE html>
<html lang="es">
<head>
<title>Example</title>
<meta charset="UTF-8">
<meta name="title" content="Example">
<meta name="description" content="Example">
</head>
<body>
<h1>Hi {{ name }}</h1>
{{ dump( session.get( 'name' ) ) }}
</body>
</html>If you want to debug the data in twig templates.
Toolbar.php file
use Daycry\Twig\Debug\Toolbar\Collectors\Twig;
public array $collectors = [
...
//Views::class,
Twig::class
];This integration implements a multi-layer caching architecture covering:
- Compiled template classes (auto-detected backend: CI cache service if available, otherwise filesystem)
- Compile index (logical template -> compiled flag)
- Template discovery stats + optional snapshot (with fingerprint & APCu acceleration)
- Warmup summary persistence
- Invalidation state (last + cumulative)
Backend selection is automatic (CI cache service if available, otherwise filesystem). Prefix derives from global cache config; TTL normally unlimited.
Discovery snapshot, preload and APCu acceleration are now automatic in the full profile (leanMode = false). Use enableDiscoverySnapshot when in Lean Mode to opt back in.
Warm all templates once after deployment:
php spark twig:warmup --all
Clear everything (compiled + persisted artifacts):
php spark twig:clear-cache --reinit
See full details, key layout, and troubleshooting in docs/CACHING.md.
CHANGELOG.md— release-by-release diff (Keep-a-Changelog format).CONTRIBUTING.md— local quality gates and contribution conventions.docs/SERVICES.md— modular internal services (Discovery, CacheManager, DynamicRegistry, Invalidator) plus contracts, profiler, logger bridge, validators.docs/PERFORMANCE.md— warmup strategy, discovery tuning, batch optimisation, render profiler.docs/CACHING.md— multi-layer caching architecture, key layout, lean-mode matrix.docs/DIAGNOSTICS_REFERENCE.md— full schema for every key ingetDiagnostics().docs/TROUBLESHOOTING.md— common-case investigations (no templates discovered, cache never cleared, HMAC drops, APCu warnings, exit-code-zero-on-failure, etc.).
Enable Lean Mode to minimize persistence & diagnostic overhead:
$config->leanMode = true; // disables warmup summary, invalidation history, discovery snapshot, dynamic & extended diagnosticsRe-enable selected capabilities while staying in Lean:
$config->leanMode = true;
$config->enableDiscoverySnapshot = true; // keep snapshot for faster discovery
$config->enableWarmupSummary = true; // record last warmup resultIf leanMode = false (default) all capabilities are active automatically (snapshot always on now).
See docs/CACHING.md (section "Lean Mode & Capability Overrides") and docs/PERFORMANCE.md for rationale & cost matrix.
Replace the internal loader (e.g. use an in-memory ArrayLoader for tests):
use Twig\\Loader\\ArrayLoader;
use Daycry\\Twig\\Twig;
$twig = new Twig();
$twig->withLoader(new ArrayLoader([
'hello.twig' => 'Hello {{ name }}'
]));
echo $twig->render('hello', ['name' => 'World']);Enable strict mode (undefined variables throw a RuntimeError):
$config = new \\Daycry\\Twig\\Config\\Twig();
$config->strictVariables = true;
$twig = new Twig($config);Register functions or filters at runtime, even before the first render. Items queued before initialization are applied automatically.
Supports:
- Boolean shorthand (backward compatible) → safe HTML when true.
- Array options mirroring native Twig options (
is_safe,needs_environment,needs_context, etc.).
// Boolean shorthand
$twig->registerFunction('hello_fn', fn(string $n) => 'Hello ' . $n); // escaped by default
$twig->registerFunction('raw_html', fn() => '<b>Bold</b>', true); // mark as safe HTML
// Array options (new)
$twig->registerFunction('upper_env',
function(\Twig\Environment $env, string $v) { return strtoupper($v); },
['needs_environment' => true]
);
// Filters
$twig->registerFilter('exclaim', fn(string $v) => $v . '!', ['is_safe' => ['html']]);
$twig->registerFilter('italic', fn(string $v) => '<i>'.$v.'</i>', []); // will be escapedUsage in templates:
{{ hello_fn('World') }} {# Hello World #}
{{ raw_html() }} {# <b>Bold</b> (not escaped) #}
{{ 'wow'|exclaim }} {# wow! #}
{{ 'x'|italic }} {# <i>x</i> because unsafe #}Specify a custom cache path via config:
$config = new \\Daycry\\Twig\\Config\\Twig();
$config->cachePath = WRITEPATH.'cache'.DIRECTORY_SEPARATOR.'twig_custom';
$twig = new Twig($config);Clear compiled templates (optionally reinitializing the environment):
$removedFiles = $twig->clearCache(); // remove compiled files only
$removedFiles = $twig->clearCache(true); // also reset Twig Environment
$cacheDir = $twig->getCachePath();$config = new \\Daycry\\Twig\\Config\\Twig();
$config->strictVariables = true;
$config->cachePath = WRITEPATH.'cache/twig_app';
$twig = new Twig($config);
$twig->registerFunction('link', fn(string $t, string $u) => '<a href="'.esc($u,'url').'">'.esc($t).'</a>', true);
$twig->registerFilter('reverse', fn(string $v) => strrev($v));
echo $twig->render('page', ['title' => 'My Page']);If you change templates programmatically and need a fresh compile, call clearCache(true).
You can add Twig extensions at runtime:
use Daycry\Twig\Twig;
use App\Twig\MyExtension; // extends \Twig\Extension\AbstractExtension
$twig = new Twig();
$twig->registerExtension(MyExtension::class); // queued or immediateAfter installing, you can clear compiled templates from the CLI:
php spark twig:clear-cache
php spark twig:clear-cache --reinit # also recreates the Environment
Remove cache for a single logical template name (without extension):
$twig->invalidateTemplate('emails/welcome'); // best-effort removal
$twig->invalidateTemplate('emails/welcome', true); // remove + reinitialize environmentCLI variant:
php spark twig:invalidate emails/welcome
php spark twig:invalidate emails/welcome --reinit
Invalidate multiple logical template names in one call:
$summary = $twig->invalidateTemplates(['welcome','emails/welcome','admin/dashboard']);
/* $summary example:
[
'removed' => 3, // total cache files removed
'templates' => [ // per logical template details
'welcome' => 1,
'emails/welcome' => 1,
'admin/dashboard' => 1,
],
'reinit' => false,
]*/
// Force environment recreation after invalidation:
$twig->invalidateTemplates(['welcome'], true);Invalidate by namespace (when using namespaced paths @namespace):
// Invalidate all templates under namespace '@admin'
$twig->invalidateNamespace('@admin');
// Invalidate all templates in the main (root) namespace
$twig->invalidateNamespace(null);Precompile templates to avoid first-hit latency. Two APIs:
// Specific templates (logical names without extension)
$summary = $twig->warmup(['welcome','emails/welcome']);
// All discovered templates under configured paths
$summaryAll = $twig->warmupAll();
/* Returned structure:
[
'compiled' => 5,
'skipped' => 12, // already compiled
'errors' => 0,
]
*/
// Force recompilation ignoring existing compiled cache fingerprints
$twig->warmup(['welcome'], true);CLI command:
php spark twig:warmup --all
php spark twig:warmup welcome emails/welcome
php spark twig:warmup welcome --force # recompile even if cached
Warmup uses a heuristic hash check (md5 of logical name) to decide if a template seems compiled; --force bypasses this.
By default the library writes structured event=twig.* key=value ... entries
through CodeIgniter's log_message() helper. No additional configuration is
required; verbosity is controlled by app/Config/Logger.php.
If you need monolog/syslog/etc., inject a PSR-3 logger via the constructor or
setLogger():
use Psr\Log\LoggerInterface;
/** @var LoggerInterface $logger */
$twig = new \Daycry\Twig\Twig($config, $logger);
// or later:
$twig->setLogger($logger);
$twig->setLogger(null); // restore the log_message() fallbackRepresentative events (levels vary: debug/info/error):
twig.function.queued,twig.function.registered,twig.function.unregisteredtwig.filter.queued,twig.filter.registered,twig.filter.unregisteredtwig.extension.queued,twig.extension.registered,twig.extension.unregisteredtwig.cache.enabled,twig.cache.disabled,twig.cache.clearedtwig.cache.adapter.signature_invalid(HMAC verification failed — entry dropped)twig.template.invalidated,twig.templates.invalidated,twig.namespace.invalidatedtwig.warmup.compiled,twig.warmup.errortwig.loader.replaced,twig.reset,twig.path.addedtwig.discovery.*(snapshot persistence / migration / APCu)twig.invalidations.*(state load/save errors)twig.warmup.summary.*(state load/save errors)
Persistence catches that previously swallowed exceptions silently now log at
debug level (event=twig.<area>.error msg=...).
Public event identifiers are also available as a string-backed enum for typed call sites:
use Daycry\Twig\Constants\TwigEvent;
event(TwigEvent::WarmupAfter->value, $payload);Breaking change vs ≤ 0.2.x: ad-hoc message formats were replaced by the
event=... shape; update any log parser that grepped for the old text.
Every command extends AbstractTwigCommand and returns proper integer exit
codes (EXIT_SUCCESS, EXIT_USER_INPUT, EXIT_ERROR) so failures actually
fail in CI/CD pipelines.
| Command | Description | Common Options / Notes |
|---|---|---|
php spark twig:publish |
Publish the config file to app/Config/Twig.php. |
Run once after install. |
php spark twig:clear-cache |
Delete compiled cache files. | --reinit recreate environment after clearing. |
php spark twig:invalidate <template> |
Invalidate a single logical template. | --reinit if removed. Name without extension. Validated for path traversal. |
php spark twig:invalidate:batch <t1> <t2> ... |
Invalidate multiple logical templates. | --reinit if any removed. |
php spark twig:warmup |
Precompile specific templates. | Provide names or use --all; --force to ignore existing cache; --json and --verbose available. |
php spark twig:warmup:status |
Show last warmup summary (warmup-summary.json). |
--json. |
php spark twig:list |
List discovered logical templates. | --status to include compiled flag, --json. |
php spark twig:stats |
Show counts & cache information. | Reads compile index and cache directory. |
php spark twig:lint [template] |
Validate Twig syntax without rendering. | If template is omitted, every discovered template is linted. --json. Non-zero exit on syntax errors. |
php spark twig:doctor |
Health check (paths, cache, APCu, index, version). | --json. Non-zero exit when any check is ERROR-level. |
php spark twig:diagnostics |
Print full getDiagnostics() output. |
--json. |
php spark twig:reset-metrics (alias twig:reset) |
Reset diagnostic artifacts (discovery stats, warmup summary, optionally compile index/cache). | --include-index, --include-cache, --json. |
Use the listTemplates() API to enumerate logical names. You can filter by namespace and/or a glob-style pattern (* and ?).
// All templates
$all = $twig->listTemplates();
// All templates inside a namespace
$admin = $twig->listTemplates(false, '@admin');
// Pattern filtering (within namespace)
$adminDash = $twig->listTemplates(false, '@admin', 'dash*/index');
// With compiled status
$withStatus = $twig->listTemplates(true);Patterns are case-insensitive. If a namespace is supplied, the pattern is matched against the path portion inside that namespace.
Discovered logical template names are cached per-process (context hash: loader class + paths + extension). The cache invalidates automatically when:
- Loader is replaced (
withLoader()) - Environment reset (
resetTwig()) This reduces filesystem traversal on repeated listing or namespace invalidation operations.
Release-by-release notes live in CHANGELOG.md. The
[Unreleased] section there mirrors the What's new block at the top of
this file.
A reference of small features that don't deserve a top-level section:
$twig->unregisterFunction('temp_fn');
$twig->unregisterFilter('brackets');
$twig->unregisterExtension(MyExtension::class);$twig->disableCache(); // turns off cache (does not delete existing by default)
$twig->disableCache(true); // also removes existing compiled files
$twig->enableCache(); // re-enable with default path
$twig->enableCache('/custom/path');
if (! $twig->isCacheEnabled()) { /* ... */ }Set different escaping strategies per Twig namespace (leading @ omitted):
$twig->setAutoescapeForNamespace('admin', 'html');
$twig->setAutoescapeForNamespace('rawmail', false); // disable escaping
$twig->removeAutoescapeForNamespace('rawmail');Warmup operations store compiled logical names into compile-index.json
inside the cache directory:
$twig->warmup(['welcome']);
$templates = $twig->listTemplates(true); // [['name' => 'welcome', 'compiled' => true], ...]When extendedDiagnostics is on (default in the full profile), every render
records its wall-clock cost; the aggregate is exposed via diagnostics:
$diag = $twig->getDiagnostics();
print_r($diag['performance']['per_template']);
print_r($diag['performance']['top_templates']); // top 10 by total msA bounded __overflow__ bucket caps per-template entries to keep memory
predictable on long-lived workers.
{ "enabled": true, "path": "/var/www/app/writable/cache/twig", // null when mode=service "mode": "filesystem" | "service", "service_class": "CodeIgniter\\Cache\\Handlers\\RedisHandler", // service mode only "prefix": "twig_", // derived from Config\Cache::$prefix "ttl": 0, // 0 = no expiry (typical for compiled artifacts) "compiled_templates": 42, "reconstructed_index": false }