You are here

public function Plugin::postPackage in Drupal 9

Same name and namespace in other branches
  1. 8 composer/Plugin/Scaffold/Plugin.php \Drupal\Composer\Plugin\Scaffold\Plugin::postPackage()

Post package event behavior.

Parameters

\Composer\Installer\PackageEvent $event: Composer package event sent on install/update/remove.

File

composer/Plugin/Scaffold/Plugin.php, line 111

Class

Plugin
Composer plugin for handling drupal scaffold.

Namespace

Drupal\Composer\Plugin\Scaffold

Code

public function postPackage(PackageEvent $event) {
  $this
    ->handler()
    ->onPostPackageEvent($event);
}