1
0
Fork 0

Merge branch '1.4'

pull/6545/head
Jordi Boggiano 2017-07-06 09:56:17 +02:00
commit 17b7387c37
2 changed files with 7 additions and 2 deletions

View File

@ -433,9 +433,14 @@ EOF;
}
if (isset($autoloads['classmap'])) {
$blacklist = null;
if (!empty($autoloads['exclude-from-classmap'])) {
$blacklist = '{(' . implode('|', $autoloads['exclude-from-classmap']) . ')}';
}
foreach ($autoloads['classmap'] as $dir) {
try {
$loader->addClassMap($this->generateClassMap($dir, null, null, false));
$loader->addClassMap($this->generateClassMap($dir, $blacklist, null, false));
} catch (\RuntimeException $e) {
$this->io->writeError('<warning>'.$e->getMessage().'</warning>');
}

View File

@ -75,7 +75,7 @@ class ClassMapGenerator
$map = array();
$filesystem = new Filesystem();
$cwd = getcwd();
$cwd = realpath(getcwd());
foreach ($path as $file) {
$filePath = $file->getPathname();