Custom2.php 573 B

123456789101112131415161718
  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-v2';
  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 getInstallPath(PackageInterface $package) {}
  14. }