public function updateAutoloadFile(): void
{ $vendorDir =
realpath($this->composer->
getConfig()->
get('vendor-dir'
));
if (!
is_file($autoloadFile =
$vendorDir.'/autoload.php'
) || false ===
$extra =
$this->composer->
getPackage()->
getExtra()['runtime'
] ??
[] ) { return;
} $fs =
new Filesystem();
$projectDir = \
dirname(realpath(Factory::
getComposerFile()));
if (null ===
$autoloadTemplate =
$extra['autoload_template'
] ?? null
) { $autoloadTemplate = __DIR__.'/autoload_runtime.template';
} else { if (!
$fs->
isAbsolutePath($autoloadTemplate)) { $autoloadTemplate =
$projectDir.'/'.
$autoloadTemplate;
} if (!
is_file($autoloadTemplate)) { throw new \
InvalidArgumentException(sprintf('File "%s" defined under "extra.runtime.autoload_template" in your composer.json file not found.',
$this->composer->
getPackage()->
getExtra()['runtime'
]['autoload_template'
]));
} }