Custom2.php 631 B

12345678910111213141516171819
  1. <?php
  2. namespace Installer;
  3. use Composer\Installer\InstallerInterface;
  4. use Composer\Package\PackageInterface;
  5. class Custom2 implements InstallerInterface
  6. {
  7. public $version = 'installer-v3';
  8. public function supports($packageType) {}
  9. public function isInstalled(PackageInterface $package) {}
  10. public function install(PackageInterface $package) {}
  11. public function update(PackageInterface $initial, PackageInterface $target) {}
  12. public function uninstall(PackageInterface $package) {}
  13. public function replace(PackageInterface $package) {}
  14. public function getInstallPath(PackageInterface $package) {}
  15. }