summaryrefslogtreecommitdiffstats
path: root/apps/cloud_federation_api/composer/autoload.php
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-11-22 10:08:40 +0100
committerCarl Schwan <carl@carlschwan.eu>2022-11-22 13:35:17 +0100
commitf244406ebd54bd8eca160078c8513b57d0316f5b (patch)
treec6fc11b73806bb696ae9854e6e36b5c2c7abbaa2 /apps/cloud_federation_api/composer/autoload.php
parente35bcc9381246a8ec3da96e78e9771ef6044a6d4 (diff)
downloadnextcloud-server-f244406ebd54bd8eca160078c8513b57d0316f5b.tar.gz
nextcloud-server-f244406ebd54bd8eca160078c8513b57d0316f5b.zip
Update composer autoloader
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/cloud_federation_api/composer/autoload.php')
-rw-r--r--apps/cloud_federation_api/composer/autoload.php17
1 files changed, 15 insertions, 2 deletions
diff --git a/apps/cloud_federation_api/composer/autoload.php b/apps/cloud_federation_api/composer/autoload.php
index fc52f01bfaf..0c261b9233d 100644
--- a/apps/cloud_federation_api/composer/autoload.php
+++ b/apps/cloud_federation_api/composer/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';