1
0
Fork 0

Updates per @stof

pull/2524/head
Stan Lemon 2013-12-23 11:27:33 -05:00
parent d6c46f2091
commit 5fd3223aec
3 changed files with 3 additions and 3 deletions

View File

@ -177,7 +177,7 @@
"description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\"."
},
"autoloader-suffix": {
"type": ["string", "boolean"],
"type": "string",
"description": "Optional string to be used as a suffix to the autoloader generator. When null a random one will be generated."
},
"prepend-autoloader": {

View File

@ -169,7 +169,7 @@ EOF;
$classmapFile .= ");\n";
if (!$suffix) {
$suffix = $config->get('autoloader-suffix') ? $config->get('autoloader-suffix') : md5(uniqid('', true));
$suffix = $config->get('autoloader-suffix') ?: md5(uniqid('', true));
}
file_put_contents($targetDir.'/autoload_namespaces.php', $namespacesFile);

View File

@ -35,7 +35,7 @@ class Config
'cache-files-ttl' => null, // fallback to cache-ttl
'cache-files-maxsize' => '300MiB',
'discard-changes' => false,
'autoload-suffix' => false,
'autoload-suffix' => null,
'prepend-autoloader' => true,
'github-domains' => array('github.com'),
);