prod.php 275 B

12345678910
  1. <?php
  2. // configure your app for the production environment
  3. $app['twig.path'] = [__DIR__ . '/../templates'];
  4. $app['twig.options'] = ['cache' => __DIR__ . '/../var/cache/twig'];
  5. $app['app.mail_to'] = 'support@osinet.fr';
  6. $app['data'] = __DIR__ . '/../web/data/items.json';