Skip to content

Commit

Permalink
updated composer.json with latest version for compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
Surfoo committed Feb 9, 2023
1 parent ab65036 commit b938115
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
4 changes: 3 additions & 1 deletion phpstan.neon.dist
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
parameters:
checkMissingIterableValueType: false
level: 7

paths:
- src

0 comments on commit b938115

Please sign in to comment.