PHP Classes

File: app/config/slim.php

Recommend this page to a friend!
  Classes of ikhsan   Slim Starter   app/config/slim.php   Download  
File: app/config/slim.php
Role: Configuration script
Content type: text/plain
Description: Slim configuration
Class: Slim Starter
Build MVC Web applications based on Slim framework
Author: By
Last change: Update of app/config/slim.php
Date: 5 months ago
Size: 492 bytes
 

Contents

Class file image Download
<?php

$config
['slim'] = array(
   
// Modular
   
'modular' => true,

   
// Application
   
'mode' => 'development',

   
// Debugging
   
'debug' => true,

   
// Logging
   
'log.writer' => null,
   
'log.level' => \Slim\Log::DEBUG,
   
'log.enabled' => true,

   
//View
   
'view' => new \Slim\Views\Twig(),
   
'templates.path'=> APP_PATH.'views',

   
// HTTP
   
'http.version' => '1.1',

   
// Routing
   
'routes.case_sensitive' => true
);