Skip to content

Commit

Permalink
Fix extra exception
Browse files Browse the repository at this point in the history
  • Loading branch information
iranimij committed Aug 29, 2024
1 parent 9438b2f commit 2bbe059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Composer/ComposerFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,6 @@ public function getName(): string
public function getRequirements(): array
{
// @todo: Merge this with require-dev?
return array_merge($this->get('require'), $this->get('require-dev'));
return array_merge($this->get('require'));
}
}

0 comments on commit 2bbe059

Please sign in to comment.