Nextras Composer Autoload Simplifier is a Composer plugin which can replace vendor/autoload.php
with a simplified and therefore slightly faster version.
Use composer:
$ composer require nextras/composer-autoload-simplifier
<?php declare(strict_types = 1);
(function () {
$requireClassScoped = function (string $path) {
require $path;
};
$requireFileScoped = function (string $id, string $path) {
if (empty($GLOBALS['__composer_autoload_files'][$id])) {
require $path;
$GLOBALS['__composer_autoload_files'][$id] = TRUE;
}
};
spl_autoload_register(function (string $className) use ($requireClassScoped) {
static $classMap = [
'Tracy\\Bar' => __DIR__ . '/tracy/tracy/src/Tracy/Bar.php',
'Tracy\\BlueScreen' => __DIR__ . '/tracy/tracy/src/Tracy/BlueScreen.php',
...
];
if (isset($classMap[$className])) {
$requireClassScoped($classMap[$className]);
}
});
$requireFileScoped('7745382c92b7799bf1294b1f43023ba2', __DIR__ . '/tracy/tracy/src/shortcuts.php');
})();
MIT. See full license.