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

Add 'include-path' option to PEAR packages

This commit is contained in:
Alexey Prilipko 2012-06-06 12:21:52 +11:00
parent 5c16889c48
commit 71ac073ebe
2 changed files with 28 additions and 3 deletions

View file

@ -163,6 +163,7 @@ class PearRepository extends ArrayRepository
'autoload' => array(
'classmap' => array(''),
),
'include-path' => array('/'),
);
try {
@ -305,6 +306,7 @@ class PearRepository extends ArrayRepository
'autoload' => array(
'classmap' => array(''),
),
'include-path' => array('/'),
);
$packageKeys = array('l' => 'license', 'd' => 'description');
foreach ($packageKeys as $pear => $composer) {