diff --git a/src/Command/CreateCommand.php b/src/Command/CreateCommand.php index 7168406..3789d7d 100644 --- a/src/Command/CreateCommand.php +++ b/src/Command/CreateCommand.php @@ -31,7 +31,7 @@ public function run(ArgumentValueList $arguments = null):void { "Using blueprint: $blueprint" ); - $process = new Process("composer create-project --remove-vcs webengine-blueprints/$blueprint:dev-master $appDir"); + $process = new Process("composer", "create-project", "--remove-vcs", "webengine-blueprints/$blueprint:dev-master", $appDir); $process->exec(); $this->write("Installing");