Skip to content

Instantly share code, notes, and snippets.

@dragoonis
Last active December 15, 2015 21:48
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 dragoonis/4a4f670655410a093650 to your computer and use it in GitHub Desktop.
Save dragoonis/4a4f670655410a093650 to your computer and use it in GitHub Desktop.
<?php
$config = array();
$config['framework'] = array();
$config['modules'] = require __DIR__ . '/modules.php';
$config['templating'] = array(
'engines' => array('php', 'smarty', 'twig'),
'globals' => array(
'ga_tracking' => 'UA-XXXXX-X'
)
);
$config['datasource'] = array(
'connections' => require __DIR__ . '/datasource.php'
);
$config['skeleton.module.path'] = './utils/skeleton_module';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment