diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 189105d..2f3eecb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,5 +12,3 @@ jobs: uses: innmind/github-workflows/.github/workflows/psalm-matrix.yml@main cs: uses: innmind/github-workflows/.github/workflows/cs.yml@main - with: - php-version: '8.2' diff --git a/CHANGELOG.md b/CHANGELOG.md index 7052353..4d8f35e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [Unreleased] + +### Changed + +- Requires PHP `8.4` +- Requires `innmind/foundation:~2.1` + ## 5.0.0 - 2025-08-24 ### Changed diff --git a/README.md b/README.md index 5e687f9..77d2e49 100644 --- a/README.md +++ b/README.md @@ -47,5 +47,5 @@ $router = Router::of( )); ); -$response = $router(/* an instance of Innmind\Http\Message\ServerRequest */)->unwrap(); +$response = $router(/* an instance of Innmind\Http\ServerRequest */)->unwrap(); ``` diff --git a/composer.json b/composer.json index 15532dc..55ba661 100644 --- a/composer.json +++ b/composer.json @@ -15,8 +15,8 @@ "issues": "http://github.com/Innmind/HttpAuthentication/issues" }, "require": { - "php": "~8.2", - "innmind/foundation": "~1.9" + "php": "~8.4", + "innmind/foundation": "~2.1" }, "autoload": { "psr-4": { @@ -30,7 +30,7 @@ } }, "require-dev": { - "innmind/static-analysis": "^1.2.1", + "innmind/static-analysis": "~1.3", "innmind/black-box": "~6.5", "innmind/coding-standard": "~2.0" }