mirror of
https://github.com/mrclay/minify.git
synced 2025-02-23 08:25:12 +01:00
20 lines
460 B
PHP
20 lines
460 B
PHP
<?php
|
|
/**
|
|
* Sets up autoloader for Minify
|
|
*
|
|
* @package Minify
|
|
*/
|
|
|
|
$includeIfExists = function($file) {
|
|
return file_exists($file) ? include $file : false;
|
|
};
|
|
|
|
if (!$includeIfExists(__DIR__.'/autoload.php')) {
|
|
echo 'You must set up the project dependencies, run the following commands:'.PHP_EOL.
|
|
'curl -sS https://getcomposer.org/installer | php'.PHP_EOL.
|
|
'php composer.phar install'.PHP_EOL;
|
|
exit(1);
|
|
}
|
|
|
|
unset($includeIfExists);
|