forked from tubalmartin/YUI-CSS-compressor-PHP-port
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcssmin
executable file
·37 lines (29 loc) · 754 Bytes
/
cssmin
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
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env php
<?php
use tubalmartin\CssMin\Command;
$autoloadPath = null;
$autoloadPaths = array(
__DIR__ . '/../../autoload.php',
__DIR__ . '/../vendor/autoload.php',
__DIR__ . '/vendor/autoload.php'
);
foreach ($autoloadPaths as $file) {
if (file_exists($file)) {
$autoloadPath = $file;
break;
}
}
unset($file);
unset($autoloadPaths);
if (is_null($autoloadPath)) {
fwrite(
STDERR,
'You need to set up the project dependencies using Composer:' . PHP_EOL . PHP_EOL .
' composer install' . PHP_EOL . PHP_EOL .
'You can learn all about Composer on https://getcomposer.org/.' . PHP_EOL
);
die(1);
}
require $autoloadPath;
unset($autoloadPath);
Command::main();