![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.intellicart.co/vendor/mrclay/minify/ |
<?php /** * Sets up autoloading and returns the Minify\App */ call_user_func(function () { if (is_dir(__DIR__ . '/../../../vendor')) { // Used as a composer library $vendorDir = __DIR__ . '/../../../vendor'; } else { $vendorDir = __DIR__ . '/vendor'; } $file = $vendorDir . '/autoload.php'; if (!is_file($file)) { 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); } require $file; }); return new \Minify\App(__DIR__);