8 lines
228 B
PHP
8 lines
228 B
PHP
<?php
|
|
|
|
// configure your app for the production environment
|
|
|
|
$app['twig.path'] = array(__DIR__.'/../templates');
|
|
$app['twig.options'] = array('cache' => __DIR__.'/../var/cache/twig');
|
|
|
|
$app['app.mail_to'] = 'support@osinet.fr';
|