Added removing file 'include_path.php' (if it is empty).
parent
457bc20c34
commit
154092ba1a
|
@ -252,17 +252,20 @@ EOF;
|
||||||
file_put_contents($targetDir.'/autoload_namespaces.php', $namespacesFile);
|
file_put_contents($targetDir.'/autoload_namespaces.php', $namespacesFile);
|
||||||
file_put_contents($targetDir.'/autoload_psr4.php', $psr4File);
|
file_put_contents($targetDir.'/autoload_psr4.php', $psr4File);
|
||||||
file_put_contents($targetDir.'/autoload_classmap.php', $classmapFile);
|
file_put_contents($targetDir.'/autoload_classmap.php', $classmapFile);
|
||||||
if ($includePathFile = $this->getIncludePathsFile($packageMap, $filesystem, $basePath, $vendorPath, $vendorPathCode52, $appBaseDirCode)) {
|
$includePathFilePath = $targetDir.'/include_paths.php';
|
||||||
file_put_contents($targetDir.'/include_paths.php', $includePathFile);
|
if ($includePathFileContents = $this->getIncludePathsFile($packageMap, $filesystem, $basePath, $vendorPath, $vendorPathCode52, $appBaseDirCode)) {
|
||||||
|
file_put_contents($includePathFilePath, $includePathFileContents);
|
||||||
|
} else if (file_exists($includePathFilePath)){
|
||||||
|
unlink($includePathFilePath);
|
||||||
}
|
}
|
||||||
$includeFilesFilePath = $targetDir.'/autoload_files.php';
|
$includeFilesFilePath = $targetDir.'/autoload_files.php';
|
||||||
if ($includeFilesFile = $this->getIncludeFilesFile($autoloads['files'], $filesystem, $basePath, $vendorPath, $vendorPathCode52, $appBaseDirCode)) {
|
if ($includeFilesFileContents = $this->getIncludeFilesFile($autoloads['files'], $filesystem, $basePath, $vendorPath, $vendorPathCode52, $appBaseDirCode)) {
|
||||||
file_put_contents($includeFilesFilePath, $includeFilesFile);
|
file_put_contents($includeFilesFilePath, $includeFilesFileContents);
|
||||||
} else if (file_exists($includeFilesFilePath)) {
|
} else if (file_exists($includeFilesFilePath)) {
|
||||||
unlink($includeFilesFilePath);
|
unlink($includeFilesFilePath);
|
||||||
}
|
}
|
||||||
file_put_contents($vendorPath.'/autoload.php', $this->getAutoloadFile($vendorPathToTargetDirCode, $suffix));
|
file_put_contents($vendorPath.'/autoload.php', $this->getAutoloadFile($vendorPathToTargetDirCode, $suffix));
|
||||||
file_put_contents($targetDir.'/autoload_real.php', $this->getAutoloadRealFile(true, (bool) $includePathFile, $targetDirLoader, (bool) $includeFilesFile, $vendorPathCode, $appBaseDirCode, $suffix, $useGlobalIncludePath, $prependAutoloader, $classMapAuthoritative));
|
file_put_contents($targetDir.'/autoload_real.php', $this->getAutoloadRealFile(true, (bool) $includePathFileContents, $targetDirLoader, (bool) $includeFilesFileContents, $vendorPathCode, $appBaseDirCode, $suffix, $useGlobalIncludePath, $prependAutoloader, $classMapAuthoritative));
|
||||||
|
|
||||||
$this->safeCopy(__DIR__.'/ClassLoader.php', $targetDir.'/ClassLoader.php');
|
$this->safeCopy(__DIR__.'/ClassLoader.php', $targetDir.'/ClassLoader.php');
|
||||||
$this->safeCopy(__DIR__.'/../../../LICENSE', $targetDir.'/LICENSE');
|
$this->safeCopy(__DIR__.'/../../../LICENSE', $targetDir.'/LICENSE');
|
||||||
|
|
|
@ -589,6 +589,7 @@ class AutoloadGeneratorTest extends TestCase
|
||||||
{
|
{
|
||||||
$autoloadPackage = new Package('a', '1.0', '1.0');
|
$autoloadPackage = new Package('a', '1.0', '1.0');
|
||||||
$autoloadPackage->setAutoload(array('files' => array('root.php')));
|
$autoloadPackage->setAutoload(array('files' => array('root.php')));
|
||||||
|
$autoloadPackage->setIncludePaths(array('/lib', '/src'));
|
||||||
|
|
||||||
$notAutoloadPackage = new Package('a', '1.0', '1.0');
|
$notAutoloadPackage = new Package('a', '1.0', '1.0');
|
||||||
|
|
||||||
|
@ -597,8 +598,11 @@ class AutoloadGeneratorTest extends TestCase
|
||||||
$autoloadPackages[] = $b = new Package('b/b', '1.0', '1.0');
|
$autoloadPackages[] = $b = new Package('b/b', '1.0', '1.0');
|
||||||
$autoloadPackages[] = $c = new Package('c/c', '1.0', '1.0');
|
$autoloadPackages[] = $c = new Package('c/c', '1.0', '1.0');
|
||||||
$a->setAutoload(array('files' => array('test.php')));
|
$a->setAutoload(array('files' => array('test.php')));
|
||||||
|
$a->setIncludePaths(array('lib1', 'src1'));
|
||||||
$b->setAutoload(array('files' => array('test2.php')));
|
$b->setAutoload(array('files' => array('test2.php')));
|
||||||
|
$b->setIncludePaths(array('lib2'));
|
||||||
$c->setAutoload(array('files' => array('test3.php', 'foo/bar/test4.php')));
|
$c->setAutoload(array('files' => array('test3.php', 'foo/bar/test4.php')));
|
||||||
|
$c->setIncludePaths(array('lib3'));
|
||||||
$c->setTargetDir('foo/bar');
|
$c->setTargetDir('foo/bar');
|
||||||
|
|
||||||
$notAutoloadPackages = array();
|
$notAutoloadPackages = array();
|
||||||
|
@ -629,18 +633,21 @@ class AutoloadGeneratorTest extends TestCase
|
||||||
|
|
||||||
$this->generator->dump($this->config, $this->repository, $autoloadPackage, $this->im, 'composer', false, 'FilesAutoload');
|
$this->generator->dump($this->config, $this->repository, $autoloadPackage, $this->im, 'composer', false, 'FilesAutoload');
|
||||||
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_functions.php', $this->vendorDir.'/autoload.php');
|
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_functions.php', $this->vendorDir.'/autoload.php');
|
||||||
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_real_functions.php', $this->vendorDir.'/composer/autoload_real.php');
|
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_real_functions_with_include_paths.php', $this->vendorDir.'/composer/autoload_real.php');
|
||||||
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_files_functions.php', $this->vendorDir.'/composer/autoload_files.php');
|
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_files_functions.php', $this->vendorDir.'/composer/autoload_files.php');
|
||||||
|
$this->assertFileEquals(__DIR__.'/Fixtures/include_paths_functions.php', $this->vendorDir.'/composer/include_paths.php');
|
||||||
|
|
||||||
$this->generator->dump($this->config, $this->repository, $autoloadPackage, $this->im, 'composer', false, 'FilesAutoload');
|
$this->generator->dump($this->config, $this->repository, $autoloadPackage, $this->im, 'composer', false, 'FilesAutoload');
|
||||||
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_functions.php', $this->vendorDir.'/autoload.php');
|
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_functions.php', $this->vendorDir.'/autoload.php');
|
||||||
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_real_functions.php', $this->vendorDir.'/composer/autoload_real.php');
|
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_real_functions_with_include_paths.php', $this->vendorDir.'/composer/autoload_real.php');
|
||||||
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_files_functions_with_removed_extra.php', $this->vendorDir.'/composer/autoload_files.php');
|
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_files_functions_with_removed_extra.php', $this->vendorDir.'/composer/autoload_files.php');
|
||||||
|
$this->assertFileEquals(__DIR__.'/Fixtures/include_paths_functions_with_removed_extra.php', $this->vendorDir.'/composer/include_paths.php');
|
||||||
|
|
||||||
$this->generator->dump($this->config, $this->repository, $notAutoloadPackage, $this->im, 'composer', false, 'FilesAutoload');
|
$this->generator->dump($this->config, $this->repository, $notAutoloadPackage, $this->im, 'composer', false, 'FilesAutoload');
|
||||||
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_functions.php', $this->vendorDir.'/autoload.php');
|
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_functions.php', $this->vendorDir.'/autoload.php');
|
||||||
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_real_functions_with_removed_extra.php', $this->vendorDir.'/composer/autoload_real.php');
|
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_real_functions_with_removed_include_paths_and_autolad_files.php', $this->vendorDir.'/composer/autoload_real.php');
|
||||||
$this->assertFileNotExists($this->vendorDir.'/composer/autoload_files.php');
|
$this->assertFileNotExists($this->vendorDir.'/composer/autoload_files.php');
|
||||||
|
$this->assertFileNotExists($this->vendorDir.'/composer/include_paths.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testFilesAutoloadOrderByDependencies()
|
public function testFilesAutoloadOrderByDependencies()
|
||||||
|
|
|
@ -0,0 +1,59 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
// autoload_real.php @generated by Composer
|
||||||
|
|
||||||
|
class ComposerAutoloaderInitFilesAutoload
|
||||||
|
{
|
||||||
|
private static $loader;
|
||||||
|
|
||||||
|
public static function loadClassLoader($class)
|
||||||
|
{
|
||||||
|
if ('Composer\Autoload\ClassLoader' === $class) {
|
||||||
|
require __DIR__ . '/ClassLoader.php';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getLoader()
|
||||||
|
{
|
||||||
|
if (null !== self::$loader) {
|
||||||
|
return self::$loader;
|
||||||
|
}
|
||||||
|
|
||||||
|
spl_autoload_register(array('ComposerAutoloaderInitFilesAutoload', 'loadClassLoader'), true, true);
|
||||||
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
||||||
|
spl_autoload_unregister(array('ComposerAutoloaderInitFilesAutoload', 'loadClassLoader'));
|
||||||
|
|
||||||
|
$includePaths = require __DIR__ . '/include_paths.php';
|
||||||
|
array_push($includePaths, get_include_path());
|
||||||
|
set_include_path(join(PATH_SEPARATOR, $includePaths));
|
||||||
|
|
||||||
|
$map = require __DIR__ . '/autoload_namespaces.php';
|
||||||
|
foreach ($map as $namespace => $path) {
|
||||||
|
$loader->set($namespace, $path);
|
||||||
|
}
|
||||||
|
|
||||||
|
$map = require __DIR__ . '/autoload_psr4.php';
|
||||||
|
foreach ($map as $namespace => $path) {
|
||||||
|
$loader->setPsr4($namespace, $path);
|
||||||
|
}
|
||||||
|
|
||||||
|
$classMap = require __DIR__ . '/autoload_classmap.php';
|
||||||
|
if ($classMap) {
|
||||||
|
$loader->addClassMap($classMap);
|
||||||
|
}
|
||||||
|
|
||||||
|
$loader->register(true);
|
||||||
|
|
||||||
|
$includeFiles = require __DIR__ . '/autoload_files.php';
|
||||||
|
foreach ($includeFiles as $file) {
|
||||||
|
composerRequireFilesAutoload($file);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $loader;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function composerRequireFilesAutoload($file)
|
||||||
|
{
|
||||||
|
require $file;
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
// include_paths.php @generated by Composer
|
||||||
|
|
||||||
|
$vendorDir = dirname(dirname(__FILE__));
|
||||||
|
$baseDir = dirname($vendorDir);
|
||||||
|
|
||||||
|
return array(
|
||||||
|
$baseDir . '/lib',
|
||||||
|
$baseDir . '/src',
|
||||||
|
$vendorDir . '/a/a/lib1',
|
||||||
|
$vendorDir . '/a/a/src1',
|
||||||
|
$vendorDir . '/b/b/lib2',
|
||||||
|
$vendorDir . '/c/c/lib3',
|
||||||
|
);
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
// include_paths.php @generated by Composer
|
||||||
|
|
||||||
|
$vendorDir = dirname(dirname(__FILE__));
|
||||||
|
$baseDir = dirname($vendorDir);
|
||||||
|
|
||||||
|
return array(
|
||||||
|
$baseDir . '/lib',
|
||||||
|
$baseDir . '/src',
|
||||||
|
);
|
Loading…
Reference in New Issue