2012-06-13 13:49:10 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* MiniMVC
|
|
|
|
*
|
|
|
|
* Convention-based micro-framework for PHP
|
|
|
|
*
|
|
|
|
* @package miniMVC
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2011 - 2012
|
|
|
|
* @link https://github.com/aviat4ion/miniMVC
|
2012-07-12 10:31:08 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-06-13 13:49:10 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the config array for javascript files to concatenate and minify
|
|
|
|
*/
|
2012-08-31 16:18:23 -04:00
|
|
|
return array(
|
|
|
|
/*=
|
2012-06-13 13:49:10 -04:00
|
|
|
For each group create an array like so
|
2012-07-12 10:31:08 -04:00
|
|
|
|
2012-06-13 13:49:10 -04:00
|
|
|
'my_group' => array(
|
|
|
|
'path/to/css/file1.css',
|
|
|
|
'path/to/css/file2.css'
|
|
|
|
),
|
|
|
|
*/
|
2012-08-31 16:18:23 -04:00
|
|
|
|
|
|
|
'js' => array(
|
|
|
|
'kis-lite-dom-min.js',
|
2012-09-10 11:45:39 -04:00
|
|
|
'tinyeditor.js',
|
2012-08-31 16:18:23 -04:00
|
|
|
'meta.js'
|
|
|
|
),
|
|
|
|
);
|