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

Make use-include-path default to false

This commit is contained in:
Pierre du Plessis 2013-01-14 13:09:51 +02:00
parent 84b34b70e0
commit 91ca7d7493

View file

@ -247,7 +247,7 @@ EOT
function ($val) { return $val !== 'false' && (bool) $val; }
),
'use-include-path' => array(
function ($val) { return true; },
function ($val) { return false; },
function ($val) { return $val !== 'false' && (bool) $val; }
),
);