1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-11 01:22:54 +00:00

Add config option to set if the PHP include path should automatically be used when generating the autoloader

This commit is contained in:
Pierre du Plessis 2013-01-14 10:32:26 +02:00
parent dea4bdf8f0
commit 84b34b70e0
4 changed files with 29 additions and 3 deletions

View file

@ -246,6 +246,10 @@ EOT
function ($val) { return true; },
function ($val) { return $val !== 'false' && (bool) $val; }
),
'use-include-path' => array(
function ($val) { return true; },
function ($val) { return $val !== 'false' && (bool) $val; }
),
);
$multiConfigValues = array(
'github-protocols' => array(