Skip to content

Commit

Permalink
maintenance: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
holtkamp committed Oct 19, 2022
1 parent d2c12c7 commit 0971b24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"react/filesystem": "^0.1",
"react/http": "^1.4",
"symfony/console": "^5.2 || ^6.0",
"teapot/status-code": "^1.1"
"teapot/status-code": "^1.1 || ^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
Expand Down
2 changes: 1 addition & 1 deletion src/Command/RunOctopusCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ private function determineConfiguration(): Config
if (\is_string($this->input->getOption(self::COMMAND_OPTION_ADDITIONAL_RESPONSE_HEADERS_TO_COUNT))) {
$additionalResponseHeadersToCount = $this->input->getOption(self::COMMAND_OPTION_ADDITIONAL_RESPONSE_HEADERS_TO_COUNT);
$config->additionalResponseHeadersToCount = explode(',', $additionalResponseHeadersToCount);
$this->getLogger()->notice('keep track of additional response headers: '.$additionalResponseHeadersToCount);
$this->getLogger()->notice('keep track of "{additionalResponseHeadersToCountNumber}" additional response headers: "{additionalResponseHeadersToCount}"', ['additionalResponseHeadersToCountNumber' => count($config->additionalResponseHeadersToCount), 'additionalResponseHeadersToCount' => implode(', ', $config->additionalResponseHeadersToCount)]);
}
if (is_numeric($this->input->getOption(self::COMMAND_OPTION_CONCURRENCY))) {
$config->concurrency = (int) $this->input->getOption(self::COMMAND_OPTION_CONCURRENCY);
Expand Down

0 comments on commit 0971b24

Please sign in to comment.