Skip to content

Commit

Permalink
Merge pull request #1295 from nextcloud/bump-guzzlehttp-stable22
Browse files Browse the repository at this point in the history
[stable22] Bump guzzlehttp/guzzle and guzzlehttp/psr7
  • Loading branch information
nickvergessen committed Jan 31, 2023
2 parents 83367ce + f1eb2f9 commit 1ba17c8
Show file tree
Hide file tree
Showing 42 changed files with 658 additions and 347 deletions.

This file was deleted.

This file was deleted.

17 changes: 15 additions & 2 deletions autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"doctrine/dbal": "3.1.4",
"egulias/email-validator": "2.1.25",
"giggsey/libphonenumber-for-php": "^8.12",
"guzzlehttp/guzzle": "7.3.0",
"guzzlehttp/guzzle": "^7.4.5",
"guzzlehttp/psr7": "^1.9",
"icewind/searchdav": "^2.0.0",
"icewind/streams": "v0.7.5",
"league/flysystem": "^1.0",
Expand Down

0 comments on commit 1ba17c8

Please sign in to comment.