* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Repository; use Composer\Config; use Composer\IO\IOInterface; use Composer\Json\JsonFile; use Composer\Package\Loader\ArrayLoader; use Composer\Package\Loader\LoaderInterface; use Composer\Package\Version\VersionGuesser; use Composer\Package\Version\VersionParser; use Composer\Util\ProcessExecutor; use Symfony\Component\Filesystem\Filesystem; /** * This repository allows installing local packages that are not necessarily under their own VCS. * * The local packages will be symlinked when possible, else they will be copied. * * @code * "require": { * "/": "*" * }, * "repositories": [ * { * "type": "path", * "url": "../../relative/path/to/package/" * }, * { * "type": "path", * "url": "/absolute/path/to/package/" * } * ] * @endcode * * @author Samuel Roze * @author Johann Reinke */ class PathRepository extends ArrayRepository { /** * @var Config */ private $config; /** * @var Filesystem */ private $fileSystem; /** * @var ArrayLoader */ private $loader; /** * @var VersionGuesser */ private $versionGuesser; /** * @var array */ private $packageConfig; /** * @var string */ private $path; /** * Initializes path repository. * * @param array $packageConfig * @param IOInterface $io * @param Config $config * @param LoaderInterface $loader * @param Filesystem $filesystem * @param VersionGuesser $versionGuesser */ public function __construct(array $packageConfig, IOInterface $io, Config $config, LoaderInterface $loader = null, Filesystem $filesystem = null, VersionGuesser $versionGuesser = null) { if (!isset($packageConfig['url'])) { throw new \RuntimeException('You must specify the `url` configuration for the path repository'); } $this->fileSystem = $filesystem ?: new Filesystem(); $this->loader = $loader ?: new ArrayLoader(); $this->config = $config; $this->packageConfig = $packageConfig; $this->path = realpath(rtrim($packageConfig['url'], '/')) . '/'; $this->versionGuesser = $versionGuesser ?: new VersionGuesser(new ProcessExecutor($io), new VersionParser(), $this->path); } /** * Initializes path repository. * * This method will basically read the folder and add the found package. * */ protected function initialize() { parent::initialize(); $composerFilePath = $this->path.'composer.json'; if (!$this->fileSystem->exists($composerFilePath)) { throw new \RuntimeException(sprintf('No `composer.json` file found in path repository "%s"', $this->path)); } $json = file_get_contents($composerFilePath); $package = JsonFile::parseJson($json, $composerFilePath); $package['dist'] = array( 'type' => 'path', 'url' => $this->path, ); if (!isset($package['version'])) { $package['version'] = $this->versionGuesser->guessVersion($this->config, $this->packageConfig) ?: 'dev-master'; } $package = $this->loader->load($package); $this->addPackage($package); } }