/**
* Updates the composer.json file to provide better values for some of the
* default configuration values.
*
* @return $this
*/
protected function updateComposerConfig()
{
parent::updateComposerConfig();
$this->composerManager->updateProjectConfig(['name' => $this->composerManager->createPackageName($this->projectName), 'license' => 'proprietary', 'description' => null, 'extra' => ['branch-alias' => null]]);
return $this;
}