Skip to content

Commit

Permalink
[5.x] Allow make:addon to work for any minimum-stability (#10814)
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Varga <jason@pixelfear.com>
  • Loading branch information
duncanmcclean and jasonvarga committed Sep 27, 2024
1 parent c2008b3 commit 7b9dd68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Commands/MakeAddon.php
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ protected function installAddon()
spin(
function () {
try {
Composer::withoutQueue()->throwOnFailure()->require($this->package);
Composer::withoutQueue()->throwOnFailure()->require($this->package, '*@dev');
} catch (ProcessException $exception) {
$this->line($exception->getMessage());
throw new \Exception('An error was encountered while installing your addon.');
Expand Down

0 comments on commit 7b9dd68

Please sign in to comment.