lockfile again

This commit is contained in:
Tim Bendt
2025-11-26 11:50:55 -05:00
parent af3c23cb6e
commit 6ceecaa69e
4461 changed files with 641349 additions and 10 deletions

14
vendor/league/csv/autoload.php vendored Normal file
View File

@@ -0,0 +1,14 @@
<?php
require __DIR__ . '/src/functions_include.php';
spl_autoload_register(static function (string $class): void {
if (!str_starts_with($class, 'League\Csv\\')) {
return;
}
$file = __DIR__ . '/src/' . str_replace('\\', '/', substr($class, 11)).'.php';
if (is_readable($file)) {
require $file;
}
});