aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/autoload.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-01-05 11:35:15 +0100
committerMario <mario@mariovavti.com>2023-01-05 11:35:15 +0100
commitedcb0631aa441f36cfca2384d26a622a945c6e63 (patch)
treead80b8b305583d3a602d6d62a69da7c905a46357 /vendor/autoload.php
parentbc361e64693e48dab4e034dba0c73f0dbc476bc6 (diff)
downloadvolse-hubzilla-edcb0631aa441f36cfca2384d26a622a945c6e63.tar.gz
volse-hubzilla-edcb0631aa441f36cfca2384d26a622a945c6e63.tar.bz2
volse-hubzilla-edcb0631aa441f36cfca2384d26a622a945c6e63.zip
composer dump autoload
Diffstat (limited to 'vendor/autoload.php')
-rw-r--r--vendor/autoload.php17
1 files changed, 15 insertions, 2 deletions
diff --git a/vendor/autoload.php b/vendor/autoload.php
index 5f506ac21..b8eae3f7e 100644
--- a/vendor/autoload.php
+++ b/vendor/autoload.php
@@ -3,8 +3,21 @@
// autoload.php @generated by Composer
if (PHP_VERSION_ID < 50600) {
- echo '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;
- exit(1);
+ 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;
+ }
+ }
+ trigger_error(
+ $err,
+ E_USER_ERROR
+ );
}
require_once __DIR__ . '/composer/autoload_real.php';