Real Life Example
file: code/validad/BreadBoard.pm
187: container 'TT' => as {
188: service 'default_params' => (
189: lifecycle => "Singleton",
190: dependencies =>
191: { include_path => '/Component/Path/templates', },
192: block => sub {
193: my $s = shift;
194: return {
195: TEMPLATE_EXTENSION => ".tt",
196: ERROR => 'site/error.tt',
197: TIMER => 0,
198: ENCODING => 'utf-8',
199: CLASS => "Template::AutoFilter",
200: PRE_PROCESS => 'site/macros.tt',
201: INCLUDE_PATH => [ $s->param('include_path') ],
202: };
203: },
204: );