composer update

This commit is contained in:
zyimm 2023-07-09 16:18:47 +08:00
parent de2da55859
commit fdaf23e5c2

View File

@ -11,7 +11,6 @@ class Vendor extends LibraryInstaller
{
public function install(InstalledRepositoryInterface $repo, PackageInterface $package): PromiseInterface
{
return parent::install($repo, $package)
->then(function () use ($package) {
$this->config($package);
@ -81,6 +80,6 @@ class Vendor extends LibraryInstaller
public function supports($packageType): bool
{
return 'think-extend' === $packageType;
return true;
}
}