postInstall() public static method

This method will be invoked by composer after a successful installation and creates the application server configuration file under etc/appserver/appserver.xml.
public static postInstall ( Composer\Script\Event $event ) : void
$event Composer\Script\Event The event that invokes this method
return void
Example #1
0
 /**
  * This method will be invoked by composer after a successful update and creates
  * the application server configuration file under etc/appserver/appserver.xml.
  *
  * @param \Composer\Script\Event $event The event that invokes this method
  *
  * @return void
  */
 public static function postUpdate(Event $event)
 {
     Setup::postInstall($event);
 }