Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
os: >-
['ubuntu-latest']
php: >-
['8.1', '8.2', '8.3', '8.4']
['8.1', '8.2', '8.3', '8.4', '8.5']
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
os: >-
['ubuntu-latest', 'windows-latest']
php: >-
['8.1', '8.2', '8.3', '8.4']
['8.1', '8.2', '8.3', '8.4', '8.5']
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 1.2.1 under development

- no changes in this release.
- Enh #49: Add PHP 8.5 support (@vjik)

## 1.2.0 September 23, 2025

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ server request body selecting the parser according to the server request mime ty

## Requirements

- PHP 7.4 or higher.
- PHP 8.1 - 8.5.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
}
],
"require": {
"php": "8.1 - 8.4",
"php": "8.1 - 8.5",
"ext-json": "*",
"psr/container": "^1.0 || ^2.0",
"psr/http-factory": "^1.1",
Expand Down
2 changes: 1 addition & 1 deletion tests/RequestBodyParsersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ private function createHandler(): BadRequestHandlerInterface
->willReturn(Status::OK);

return new class ($mockResponse) implements BadRequestHandlerInterface {
private array|object|null $requestParsedBody;
private array|object|null $requestParsedBody = null;

public function __construct(
private readonly ResponseInterface $mockResponse,
Expand Down
Loading