diff --git a/CHANGELOG.md b/CHANGELOG.md index 0601840..3e61545 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.19.0] - 2023-02-09 +### Added + - Compatibility with PHP 8.2 and monolog 3.0 + ## [3.18.0] - 2021-03-24 ### Added - Compatibility with PHP 8.1 diff --git a/composer.json b/composer.json index 9ff4e5d..15ec1e7 100644 --- a/composer.json +++ b/composer.json @@ -17,18 +17,18 @@ } }, "require": { - "php": "^7.3 || ^8.0 || ^8.1", - "monolog/monolog": "^2.0", + "php": "^7.3 || ^8.0 || ^8.1 || ^8.2", + "monolog/monolog": "^2.0 || ^3.0", "guzzlehttp/guzzle": "^7.0", "surfoo/oauth2-geocaching": "^1.4" }, "require-dev": { - "phpunit/phpunit": "^9.0", - "phpstan/phpstan": "^0.12", + "phpunit/phpunit": "^10.0", + "phpstan/phpstan": "^1.9", "friendsofphp/php-cs-fixer": "^3.0" }, "scripts": { - "phpstan": "vendor/bin/phpstan analyse src", + "phpstan": "vendor/bin/phpstan analyse", "php-cs-fixer": "php-cs-fixer fix" } } diff --git a/phpstan.neon.dist b/phpstan.neon.dist index 06d9fdc..83b933e 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -1,3 +1,5 @@ parameters: - checkMissingIterableValueType: false level: 7 + + paths: + - src \ No newline at end of file