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