diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2a5ea21..0c621d2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,16 +14,10 @@ jobs: fail-fast: false matrix: php_version: - - '8.0' - - '8.1' - '8.2' dependencies: - 'default' include: - - php_version: '8.0' - dependencies: 'lowest' - - php_version: '8.1' - dependencies: 'lowest' - php_version: '8.2' dependencies: 'lowest' steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 86074ce..0a354d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ### Unreleased +### v1.3.0 (2024-02-08) + +* Drop support for PHP 8.0 and 8.1 +* Support PSR log v2 and v3 + ### v1.2.0 (2022-10-17) * Support PHP 8.1 and PHP 8.2 diff --git a/composer.json b/composer.json index 2ca51cf..3873ea1 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ } ], "require": { - "php": "~8.0.0 || ~8.1.0 || ~8.2.0", + "php": "~8.2.0", "ingenerator/warden-core": "^1.2", "psr/log": "^1.0 || ^2.0 || ^3.0" },