Skip to content

Instantly share code, notes, and snippets.

@GiacomoP
Created August 22, 2016 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GiacomoP/22047cac1829001484ef2b676aedefd2 to your computer and use it in GitHub Desktop.
Save GiacomoP/22047cac1829001484ef2b676aedefd2 to your computer and use it in GitHub Desktop.
Example of a default config file
<?php
return array(
'projectName' => 'Survey',
'author' => 'Nobody',
'baseUrl' => 'http://survey.local',
'mode' => 'development',
'cache' => true,
'mysql' => array(
'host' => 'localhost',
'username' => 'Survey',
'password' => 'temp',
'database' => 'Survey'
),
'session' => array(
'name' => 'SurveySESSID',
'lifetime' => 60 * 30
),
'cookies' => array(
'shortLifetime' => 60 * 30,
'longLifetime' => 60 * 60 * 24 * 30
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment