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