2012-01-13 11:58:06 -05:00
|
|
|
<?php
|
2012-04-27 16:28:25 -04:00
|
|
|
/**
|
|
|
|
* MiniMVC
|
|
|
|
*
|
|
|
|
* Convention-based micro-framework for PHP
|
|
|
|
*
|
|
|
|
* @package miniMVC
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2011 - 2012
|
|
|
|
* @link https://github.com/timw4mail/miniMVC
|
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the config array for css files to concatenate and minify
|
|
|
|
*/
|
|
|
|
return [
|
2012-01-13 11:58:06 -05:00
|
|
|
/*-----
|
|
|
|
Css
|
|
|
|
-----*/
|
2012-04-27 16:28:25 -04:00
|
|
|
'css' => [
|
2012-01-13 11:58:06 -05:00
|
|
|
'message.css'
|
2012-04-27 16:28:25 -04:00
|
|
|
],
|
2012-01-13 11:58:06 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
For each group create an array like so
|
|
|
|
|
2012-04-27 16:28:25 -04:00
|
|
|
'my_group' => [
|
2012-01-13 11:58:06 -05:00
|
|
|
'path/to/css/file1.css',
|
|
|
|
'path/to/css/file2.css'
|
2012-04-27 16:28:25 -04:00
|
|
|
],
|
2012-01-13 11:58:06 -05:00
|
|
|
*/
|
2012-04-27 16:28:25 -04:00
|
|
|
];
|
|
|
|
// End of css_groups.php
|