From cef39a9446650f71bb3b7f3230f88234648d34ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Sep 2023 03:45:30 +0000 Subject: [PATCH 1/2] Update guzzlehttp/psr7 requirement from ^2.5 to ^2.6 Updates the requirements on [guzzlehttp/psr7](https://github.com/guzzle/psr7) to permit the latest version. - [Release notes](https://github.com/guzzle/psr7/releases) - [Changelog](https://github.com/guzzle/psr7/blob/2.6/CHANGELOG.md) - [Commits](https://github.com/guzzle/psr7/compare/2.5.0...2.6.1) --- updated-dependencies: - dependency-name: guzzlehttp/psr7 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 36c0c1d19..8984e8f17 100644 --- a/composer.json +++ b/composer.json @@ -56,7 +56,7 @@ "require-dev": { "ext-simplexml": "*", "adriansuter/php-autoload-override": "^1.4", - "guzzlehttp/psr7": "^2.5", + "guzzlehttp/psr7": "^2.6", "httpsoft/http-message": "^1.1", "httpsoft/http-server-request": "^1.1", "laminas/laminas-diactoros": "^2.17", From 47ab47349473c98deb115d3fdee521e1178f94f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20B=C3=A9rub=C3=A9?= Date: Mon, 2 Oct 2023 22:58:55 -0600 Subject: [PATCH 2/2] fix line length --- Slim/Exception/HttpTooManyRequestsException.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Slim/Exception/HttpTooManyRequestsException.php b/Slim/Exception/HttpTooManyRequestsException.php index c99236d3b..be4b29bb3 100644 --- a/Slim/Exception/HttpTooManyRequestsException.php +++ b/Slim/Exception/HttpTooManyRequestsException.php @@ -23,5 +23,6 @@ class HttpTooManyRequestsException extends HttpSpecializedException protected $message = 'Too many requests.'; protected string $title = '429 Too Many Requests'; - protected string $description = 'The client application has surpassed its rate limit, or number of requests they can send in a given period of time.'; + protected string $description = 'The client application has surpassed its rate limit, ' . + 'or number of requests they can send in a given period of time.'; }