2011-11-05 22:51:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Installer;
|
|
|
|
|
|
|
|
use Composer\Installer\InstallerInterface;
|
|
|
|
use Composer\Package\PackageInterface;
|
2012-04-17 23:06:23 +00:00
|
|
|
use Composer\Repository\InstalledRepositoryInterface;
|
2011-11-05 22:51:35 +00:00
|
|
|
|
|
|
|
class Custom implements InstallerInterface
|
|
|
|
{
|
|
|
|
public $version = 'installer-v1';
|
|
|
|
|
|
|
|
public function supports($packageType) {}
|
2012-04-17 23:06:23 +00:00
|
|
|
public function isInstalled(InstalledRepositoryInterface $repo, PackageInterface $package) {}
|
|
|
|
public function install(InstalledRepositoryInterface $repo, PackageInterface $package) {}
|
|
|
|
public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target) {}
|
|
|
|
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package) {}
|
2011-11-05 22:51:35 +00:00
|
|
|
public function getInstallPath(PackageInterface $package) {}
|
|
|
|
}
|