2015-06-24 16:01:35 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-16 11:40:01 -05:00
|
|
|
* Hummingbird Anime Client
|
2015-06-24 16:01:35 -04:00
|
|
|
*
|
2015-11-16 11:40:01 -05:00
|
|
|
* An API client for Hummingbird to manage anime and manga watch lists
|
2015-06-24 16:01:35 -04:00
|
|
|
*
|
2016-08-30 10:01:18 -04:00
|
|
|
* PHP version 5.6
|
|
|
|
*
|
2015-11-16 11:40:01 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
2016-08-30 10:01:18 -04:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2015 - 2016 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @version 3.1
|
2015-11-16 11:40:01 -05:00
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
2015-06-24 16:01:35 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the config array for css files to concatenate and minify
|
|
|
|
*/
|
|
|
|
return [
|
|
|
|
/*-----
|
|
|
|
Css
|
|
|
|
-----*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
For each group create an array like so
|
|
|
|
|
|
|
|
'my_group' => array(
|
|
|
|
'path/to/css/file1.css',
|
|
|
|
'path/to/css/file2.css'
|
|
|
|
),
|
|
|
|
*/
|
|
|
|
'base' => [
|
|
|
|
'base.css'
|
|
|
|
]
|
|
|
|
];
|
|
|
|
// End of css_groups.php
|