Skip to content

Commit 69f5f0d

Browse files
committed
cs
1 parent 6fb9e39 commit 69f5f0d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Command/OpenVersionsCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ protected function configure(): void
3737
$this->addOption('limit', null, InputOption::VALUE_REQUIRED, 'How many packages to open-up', 5);
3838
$this->addOption('dry-run', null, InputOption::VALUE_NONE, 'Without any "composer.json" changes');
3939
$this->addOption('dev', null, InputOption::VALUE_NONE, 'Focus on dev packages only');
40+
$this->addOption('package-prefix', null, InputOption::VALUE_REQUIRED, 'Name prefix to filter packages by');
4041
}
4142

4243
protected function execute(InputInterface $input, OutputInterface $output): int

src/Composer/ComposerOutdatedResponseProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private function resolveComposerOutdatedFilePath(): ?string
5353
{
5454
$projectComposerHash = $this->resolveProjectComposerHash();
5555
if ($projectComposerHash) {
56-
// load from cache, temporarily - @todo cache on json hash + week timeout
56+
// load from cache if we already made the analysis
5757
return sys_get_temp_dir() . '/jack/composer-outdated-' . $projectComposerHash . '.json';
5858
}
5959

0 commit comments

Comments
 (0)