1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?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;
- use Composer\Package\PackageInterface;
- use Composer\Package\Locker;
- use Composer\Repository\RepositoryManager;
- use Composer\Installer\InstallationManager;
- use Composer\Downloader\DownloadManager;
- /**
- * @author Jordi Boggiano <j.boggiano@seld.be>
- * @author Konstantin Kudryashiv <ever.zet@gmail.com>
- */
- class Composer
- {
- const VERSION = '1.0.0-alpha3';
- private $package;
- private $locker;
- private $repositoryManager;
- private $downloadManager;
- private $installationManager;
- public function setPackage(PackageInterface $package)
- {
- $this->package = $package;
- }
- public function getPackage()
- {
- return $this->package;
- }
- public function setConfig(Config $config)
- {
- $this->config = $config;
- }
- public function getConfig()
- {
- return $this->config;
- }
- public function setLocker(Locker $locker)
- {
- $this->locker = $locker;
- }
- public function getLocker()
- {
- return $this->locker;
- }
- public function setRepositoryManager(RepositoryManager $manager)
- {
- $this->repositoryManager = $manager;
- }
- public function getRepositoryManager()
- {
- return $this->repositoryManager;
- }
- public function setDownloadManager(DownloadManager $manager)
- {
- $this->downloadManager = $manager;
- }
- public function getDownloadManager()
- {
- return $this->downloadManager;
- }
- public function setInstallationManager(InstallationManager $manager)
- {
- $this->installationManager = $manager;
- }
- public function getInstallationManager()
- {
- return $this->installationManager;
- }
- }
|