[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
wp-optimize
/
vendor
/
mrclay
/
minify
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 builder
SET
[ DEL ]
📁 lib
SET
[ DEL ]
📁 static
SET
[ DEL ]
📄 LICENSE.txt
1,558 B
SET
[ EDIT ]
|
[ DEL ]
📄 bootstrap.php
658 B
SET
[ EDIT ]
|
[ DEL ]
📄 config-test.php
290 B
SET
[ EDIT ]
|
[ DEL ]
📄 config.php
6,646 B
SET
[ EDIT ]
|
[ DEL ]
📄 example.index.php
226 B
SET
[ EDIT ]
|
[ DEL ]
📄 groupsConfig.php
539 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.php
254 B
SET
[ EDIT ]
|
[ DEL ]
📄 quick-test.css
547 B
SET
[ EDIT ]
|
[ DEL ]
📄 quick-test.js
2,811 B
SET
[ EDIT ]
|
[ DEL ]
📄 quick-test.less
474 B
SET
[ EDIT ]
|
[ DEL ]
📄 quick-testinc.less
442 B
SET
[ EDIT ]
|
[ DEL ]
📄 server-info.php
4,488 B
SET
[ EDIT ]
|
[ DEL ]
📄 utils.php
2,633 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: bootstrap.php
<?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__);