| Server IP : 185.143.233.238 / Your IP : 185.215.232.195 Web Server : nginx/1.22.1 System : Linux server2065 6.1.0-35-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.137-1 (2025-05-07) x86_64 User : www-data ( 33) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/bcandle/wp-content/plugins/otter-blocks/vendor/tubalmartin/cssmin/ |
Upload File : |
#!/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();