1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-11 09:32:55 +00:00

Merge pull request #3610 from bd808/feature/classmap-authoritative

Add classmap-authoritative config setting
This commit is contained in:
Nils Adermann 2015-01-28 11:26:28 +01:00
commit 0543a32d39
10 changed files with 116 additions and 18 deletions

View file

@ -325,6 +325,7 @@ EOT
),
'autoloader-suffix' => array('is_string', function ($val) { return $val === 'null' ? null : $val; }),
'optimize-autoloader' => array($booleanValidator, $booleanNormalizer),
'classmap-authoritative' => array($booleanValidator, $booleanNormalizer),
'prepend-autoloader' => array($booleanValidator, $booleanNormalizer),
'github-expose-hostname' => array($booleanValidator, $booleanNormalizer),
);