10b3fd2d3SAndreas Gohr<?php 20b3fd2d3SAndreas Gohr 30b3fd2d3SAndreas Gohr// autoload.php @generated by Composer 40b3fd2d3SAndreas Gohr 5*dad993c5SAndreas Gohrif (PHP_VERSION_ID < 50600) { 6*dad993c5SAndreas Gohr if (!headers_sent()) { 7*dad993c5SAndreas Gohr header('HTTP/1.1 500 Internal Server Error'); 8*dad993c5SAndreas Gohr } 9*dad993c5SAndreas Gohr $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; 10*dad993c5SAndreas Gohr if (!ini_get('display_errors')) { 11*dad993c5SAndreas Gohr if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { 12*dad993c5SAndreas Gohr fwrite(STDERR, $err); 13*dad993c5SAndreas Gohr } elseif (!headers_sent()) { 14*dad993c5SAndreas Gohr echo $err; 15*dad993c5SAndreas Gohr } 16*dad993c5SAndreas Gohr } 17*dad993c5SAndreas Gohr trigger_error( 18*dad993c5SAndreas Gohr $err, 19*dad993c5SAndreas Gohr E_USER_ERROR 20*dad993c5SAndreas Gohr ); 21*dad993c5SAndreas Gohr} 22*dad993c5SAndreas Gohr 230b3fd2d3SAndreas Gohrrequire_once __DIR__ . '/composer/autoload_real.php'; 240b3fd2d3SAndreas Gohr 250b3fd2d3SAndreas Gohrreturn ComposerAutoloaderInit4dc77faa3459161bbb3efea2ab35aaa9::getLoader(); 26