-
Notifications
You must be signed in to change notification settings - Fork 0
/
docu_scssphp.php
27 lines (26 loc) · 1015 Bytes
/
docu_scssphp.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
* System - PHP Framework
*
* PHP Version 5.6
*
* @copyright 2016 Ulf Gebhardt (http://www.webcraft-media.de)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link https://github.com/webcraftmedia/system
* @package LIB
*/
namespace LIB;
class docu_scssphp implements \SYSTEM\DOCU\docu_package {
public static function get_config(){
return array( 'id' => 'scssphp',
'inpath' => new \SYSTEM\PLIB('scssphp/'),
'outpath' => new \SYSTEM\PLIB('scssphp/docu/'),
'inpath_md' => new \SYSTEM\PLIB('scssphp/docu/structure.xml'),
'outpath_md' => new \SYSTEM\PLIB('scssphp/wiki/'),
'cachepath' => new \SYSTEM\PLIB('scssphp/docu/cache/'),
'ignore' => array(),
'sourcecode' => true,
'parseprivate' => false,
'title' => 'LIB - scssphp');
}
}