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