PHP Classes

File: conf/development/system.php

Recommend this page to a friend!
  Classes of Fernando Val   Springy   conf/development/system.php   Download  
File: conf/development/system.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Springy
Microframework for Web application development
Author: By
Last change:
Date: 1 month ago
Size: 547 bytes
 

Contents

Class file image Download
<?php

/*
 * Springy Framework Configuration File.
 *
 * Used for "development" environment.
 *
 * If removed, only conf/system.php will be used.
 */

return [
   
'debug' => true,
   
'maintenance' => false,
   
'cache' => false,
   
'cache-control' => 'no-cache',
   
'session' => [
       
'secure' => false,
    ],
   
'system_error' => [
       
'save_in_database' => false,
    ],
   
'system_internal_methods' => [
       
'about' => true,
       
'phpinfo' => true,
       
'system_errors' => true,
       
'test_error' => true,
    ],
];