123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <?php
- /*
- * This file is part of Composer.
- *
- * (c) Nils Adermann <naderman@naderman.de>
- * Jordi Boggiano <j.boggiano@seld.be>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Composer\Console;
- use Symfony\Component\Console\Application as BaseApplication;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- use Symfony\Component\Console\Output\ConsoleOutput;
- use Symfony\Component\Console\Formatter\OutputFormatter;
- use Symfony\Component\Console\Formatter\OutputFormatterStyle;
- use Symfony\Component\Finder\Finder;
- use Composer\Command;
- use Composer\Composer;
- use Composer\Installer;
- use Composer\Downloader;
- use Composer\Repository;
- use Composer\Package;
- use Composer\Json\JsonFile;
- /**
- * The console application that handles the commands
- *
- * @author Ryan Weaver <ryan@knplabs.com>
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class Application extends BaseApplication
- {
- protected $composer;
- public function __construct()
- {
- parent::__construct('Composer', Composer::VERSION);
- }
- /**
- * {@inheritDoc}
- */
- public function run(InputInterface $input = null, OutputInterface $output = null)
- {
- if (null === $output) {
- $styles['highlight'] = new OutputFormatterStyle('red');
- $formatter = new OutputFormatter(null, $styles);
- $output = new ConsoleOutput(ConsoleOutput::VERBOSITY_NORMAL, null, $formatter);
- }
- return parent::run($input, $output);
- }
- /**
- * {@inheritDoc}
- */
- public function doRun(InputInterface $input, OutputInterface $output)
- {
- $this->registerCommands();
- return parent::doRun($input, $output);
- }
- /**
- * @return Composer
- */
- public function getComposer()
- {
- if (null === $this->composer) {
- $this->composer = self::bootstrapComposer();
- }
- return $this->composer;
- }
- /**
- * Bootstraps a Composer instance
- *
- * @return Composer
- */
- public static function bootstrapComposer($composerFile = null)
- {
- // load Composer configuration
- if (null === $composerFile) {
- $composerFile = getenv('COMPOSER') ?: 'composer.json';
- }
- $file = new JsonFile($composerFile);
- if (!$file->exists()) {
- if ($composerFile === 'composer.json') {
- echo 'Composer could not find a composer.json file in '.getcwd().PHP_EOL;
- } else {
- echo 'Composer could not find the config file: '.$composerFile.PHP_EOL;
- }
- echo 'To initialize a project, please create a composer.json file as described on the http://packagist.org/ "Getting Started" section'.PHP_EOL;
- exit(1);
- }
- // Configuration defaults
- $composerConfig = array(
- 'vendor-dir' => 'vendor',
- );
- $packageConfig = $file->read();
- if (isset($packageConfig['config']) && is_array($packageConfig['config'])) {
- $packageConfig['config'] = array_merge($composerConfig, $packageConfig['config']);
- } else {
- $packageConfig['config'] = $composerConfig;
- }
- $vendorDir = getenv('COMPOSER_VENDOR_DIR') ?: $packageConfig['config']['vendor-dir'];
- if (!isset($packageConfig['config']['bin-dir'])) {
- $packageConfig['config']['bin-dir'] = $vendorDir.'/bin';
- }
- $binDir = getenv('COMPOSER_BIN_DIR') ?: $packageConfig['config']['bin-dir'];
- // initialize repository manager
- $rm = new Repository\RepositoryManager();
- $rm->setLocalRepository(new Repository\FilesystemRepository(new JsonFile($vendorDir.'/.composer/installed.json')));
- $rm->setRepositoryClass('composer', 'Composer\Repository\ComposerRepository');
- $rm->setRepositoryClass('vcs', 'Composer\Repository\VcsRepository');
- $rm->setRepositoryClass('pear', 'Composer\Repository\PearRepository');
- $rm->setRepositoryClass('package', 'Composer\Repository\PackageRepository');
- // initialize download manager
- $dm = new Downloader\DownloadManager();
- $dm->setDownloader('git', new Downloader\GitDownloader());
- $dm->setDownloader('svn', new Downloader\SvnDownloader());
- $dm->setDownloader('hg', new Downloader\HgDownloader());
- $dm->setDownloader('pear', new Downloader\PearDownloader());
- $dm->setDownloader('zip', new Downloader\ZipDownloader());
- // initialize installation manager
- $im = new Installer\InstallationManager($vendorDir);
- $im->addInstaller(new Installer\LibraryInstaller($vendorDir, $binDir, $dm, $rm->getLocalRepository(), null));
- $im->addInstaller(new Installer\InstallerInstaller($vendorDir, $binDir, $dm, $rm->getLocalRepository(), $im));
- // load package
- $loader = new Package\Loader\RootPackageLoader($rm);
- $package = $loader->load($packageConfig);
- // load default repository unless it's explicitly disabled
- if (!isset($packageConfig['repositories']['packagist']) || $packageConfig['repositories']['packagist'] !== false) {
- $rm->addRepository(new Repository\ComposerRepository(array('url' => 'http://packagist.org')));
- }
- // init locker
- $lockFile = substr($composerFile, -5) === '.json' ? substr($composerFile, 0, -4).'lock' : $composerFile . '.lock';
- $locker = new Package\Locker(new JsonFile($lockFile), $rm);
- // initialize composer
- $composer = new Composer();
- $composer->setPackage($package);
- $composer->setLocker($locker);
- $composer->setRepositoryManager($rm);
- $composer->setDownloadManager($dm);
- $composer->setInstallationManager($im);
- return $composer;
- }
- /**
- * Initializes all the composer commands
- */
- protected function registerCommands()
- {
- $this->add(new Command\AboutCommand());
- $this->add(new Command\InstallCommand());
- $this->add(new Command\UpdateCommand());
- $this->add(new Command\DebugPackagesCommand());
- $this->add(new Command\SearchCommand());
- $this->add(new Command\ValidateCommand());
- $this->add(new Command\ShowCommand());
- if ('phar:' === substr(__FILE__, 0, 5)) {
- $this->add(new Command\SelfUpdateCommand());
- }
- }
- }
|