Merge pull request #3164 from xelan/github-expose-hostname-setting
Option to disable inclusion of hostname in OAuth app namepull/3365/head
commit
e4d96750ee
|
@ -39,6 +39,7 @@ class Config
|
|||
'optimize-autoloader' => false,
|
||||
'prepend-autoloader' => true,
|
||||
'github-domains' => array('github.com'),
|
||||
'github-expose-hostname' => true,
|
||||
'store-auths' => 'prompt',
|
||||
// valid keys without defaults (auth config stuff):
|
||||
// github-oauth
|
||||
|
|
|
@ -97,8 +97,10 @@ class GitHub
|
|||
|
||||
// build up OAuth app name
|
||||
$appName = 'Composer';
|
||||
if (0 === $this->process->execute('hostname', $output)) {
|
||||
if ($this->config->get('github-expose-hostname') === true && 0 === $this->process->execute('hostname', $output)) {
|
||||
$appName .= ' on ' . trim($output);
|
||||
} else {
|
||||
$appName .= ' [' . date('YmdHis') . ']';
|
||||
}
|
||||
|
||||
$headers = array();
|
||||
|
|
Loading…
Reference in New Issue