Commit a0b61969 authored by Taylor Otwell's avatar Taylor Otwell Committed by GitHub

Merge pull request #64 from themsaid/workaroundtoinstalldev

Temporary workaround to install 5.5
parents 09fab8bb 8c99a70d
......@@ -65,6 +65,12 @@ class NewCommand extends Command
$composer.' run-script post-create-project-cmd',
];
if ($input->getOption('dev')) {
unset($commands[2]);
$commands[] = $composer.' run-script post-autoload-dump';
}
if ($input->getOption('no-ansi')) {
$commands = array_map(function ($value) {
return $value.' --no-ansi';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment