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