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:
parent
dea4bdf8f0
commit
84b34b70e0
4 changed files with 29 additions and 3 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue