<?php<448901948@qq.com>
namespace think\composer;
use Composer\Installer\LibraryInstaller;
use Composer\Package\PackageInterface;
use Composer\Repository\InstalledRepositoryInterface;
class ThinkTesting extends LibraryInstaller
{
public function getInstallPath(PackageInterface $package)
{
if ('topthink/think-testing' !== $package->getPrettyName()) {
throw new \InvalidArgumentException('Unable to install this library!');
}
return parent::getInstallPath($package);
}
public function install(InstalledRepositoryInterface $repo, PackageInterface $package)
{
parent::install($repo, $package);
$this->copyTestDir($package);
}
public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target)
{
parent::update($repo, $initial, $target);
$this->copyTestDir($target);
}
private function copyTestDir(PackageInterface $package)
{
$appDir = dirname($this->vendorDir);
$source = $this->getInstallPath($package) . DIRECTORY_SEPARATOR . 'example';
if (!is_file($appDir . DIRECTORY_SEPARATOR . 'phpunit.xml')) {
$this->filesystem->copyThenRemove($source, $appDir);
} else {
$this->filesystem->removeDirectoryPhp($source);
}
}
public function supports($packageType)
{
return 'think-testing' === $packageType;
}
}