wishthis/vendor/marcocesarato/php-conventional-changelog/autoload.php
2023-12-01 15:08:54 +01:00

14 lines
258 B
PHP

<?php
// Autoload
$files = [
__DIR__ . '/../../autoload.php',
__DIR__ . '/../vendor/autoload.php',
__DIR__ . '/vendor/autoload.php',
];
foreach ($files as $file) {
if (file_exists($file)) {
require_once $file;
break;
}
}