19 lines
572 B
PHP
19 lines
572 B
PHP
<?php
|
|
|
|
namespace Installer;
|
|
|
|
use Composer\Installer\InstallerInterface;
|
|
use Composer\Package\PackageInterface;
|
|
|
|
class Custom implements InstallerInterface
|
|
{
|
|
public $version = 'installer-v1';
|
|
|
|
public function supports($packageType) {}
|
|
public function isInstalled(PackageInterface $package) {}
|
|
public function install(PackageInterface $package) {}
|
|
public function update(PackageInterface $initial, PackageInterface $target) {}
|
|
public function uninstall(PackageInterface $package) {}
|
|
public function getInstallPath(PackageInterface $package) {}
|
|
}
|