2017-10-19 07:46:32 -04:00
< ? php
// autoload.php @generated by Composer
2022-04-13 04:52:26 -04:00
if ( PHP_VERSION_ID < 50600 ) {
2022-11-22 04:08:40 -05: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-10-27 08:07:11 -04:00
throw new RuntimeException ( $err );
2022-04-13 04:52:26 -04:00
}
2017-10-19 07:46:32 -04:00
require_once __DIR__ . '/composer/autoload_real.php' ;
return ComposerAutoloaderInitComments :: getLoader ();