Symfony\Installer\NewCommand::updateComposerConfig PHP Method

updateComposerConfig() protected method

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