Skip to content

Commit

Permalink
Allow newest versions of PHP and psr/log
Browse files Browse the repository at this point in the history
  • Loading branch information
borutainfo committed Apr 24, 2022
1 parent 3e36b69 commit 0832c83
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
}
},
"require": {
"php": ">=7.1",
"php": "^7.1|^8.0",
"ext-pdo": "*",
"symfony/yaml": "^4.2.1|^5.2.1",
"pimple/pimple": "^3.2.3",
"cartalyst/collections": "^1.1.0",
"psr/log": "^1.1",
"predis/predis": "^1.1.1",
"symfony/yaml": "^4.2|^5.2",
"pimple/pimple": "^3.2",
"cartalyst/collections": "^1.1",
"psr/log": "^1.1|^2.0",
"predis/predis": "^1.1",
"phpmailer/phpmailer": "^6.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/Logger/FileLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct(FileLoggerConfig $config)
/**
* @param string $logType
* @param string $message
* @param $context
* @param array $context
*/
protected function logToFile(string $logType, string $message, array $context): void
{
Expand Down

0 comments on commit 0832c83

Please sign in to comment.