2022-06-17 17:51:59 +02:00
< ? php
// autoload.php @generated by Composer
2022-08-31 15:02:43 +02:00
if ( PHP_VERSION_ID < 50600 ) {
2023-04-14 16:34:06 +02:00
if ( ! headers_sent ()) {
header ( 'HTTP/1.1 500 Internal Server Error' );
}
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running ' . PHP_VERSION . ', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.' . PHP_EOL ;
if ( ! ini_get ( 'display_errors' )) {
if ( PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg' ) {
fwrite ( STDERR , $err );
} elseif ( ! headers_sent ()) {
echo $err ;
}
}
2025-07-04 15:08:52 +02:00
throw new RuntimeException ( $err );
2022-08-31 15:02:43 +02:00
}
2022-06-17 17:51:59 +02:00
require_once __DIR__ . '/composer/autoload_real.php' ;
2025-04-21 18:57:21 +02:00
return ComposerAutoloaderInit0bf5c8a9cfa251a218fc581ac888fe35 :: getLoader ();