Skip to content

Commit 165fad2

Browse files
authored
Merge pull request #5820 from Laravel-Backpack/fix-install-of-generators
Fix install of generators version
2 parents 5a2517f + 7a364e5 commit 165fad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/Console/Commands/Install.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function handle()
8585
$this->progressBlock('Installing Generators');
8686
if (! file_exists('vendor/backpack/generators/composer.json')) {
8787
// only do this if Generators aren't already required
88-
$process = new Process(['composer', 'require', '--dev', 'backpack/generators']);
88+
$process = new Process(['composer', 'require', '--dev', 'backpack/generators:dev-next']);
8989
$process->setTimeout(300);
9090
$process->run();
9191
}

0 commit comments

Comments
 (0)