Skip to content

Commit

Permalink
Merge branch 'release/v0.1.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
betterthanclay committed Nov 24, 2022
2 parents c531905 + eca9a35 commit dc0250e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
## v0.1.1 (2022-11-24)
* Added --with-all-dependencies to global installs

## v0.1.0 (2022-11-24)
* Built initial implementation
4 changes: 2 additions & 2 deletions src/Integra/Context.php
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ public function installGlobal(
string $name,
string ...$other
): bool {
return $this->runGlobal('require', $name, ...$other);
return $this->runGlobal(...['require', $name, ...$other, '--with-all-dependencies']);
}

/**
Expand All @@ -424,7 +424,7 @@ public function installDevGlobal(
string $name,
string ...$other
): bool {
return $this->runGlobal(...['require', $name, ...$other, '--dev']);
return $this->runGlobal(...['require', $name, ...$other, '--dev', '--with-all-dependencies']);
}

/**
Expand Down

0 comments on commit dc0250e

Please sign in to comment.