mirror of
https://github.com/mrclay/minify.git
synced 2025-02-23 16:33:02 +01:00
11 lines
215 B
PHP
11 lines
215 B
PHP
<?php
|
|
|
|
$base = realpath(dirname(__FILE__) . '/..');
|
|
$groupsSources = array(
|
|
'js' => array(
|
|
"{$base}/lib.js"
|
|
,"{$base}/test space.js"
|
|
)
|
|
,'css' => array("{$base}/test.css")
|
|
);
|
|
unset($base); |