Creating a custom Installer

To create a installer you need to implement InstallerInterface

<?php

class CustomInstaller implements InstallerInterface {}

📘

You can also extend from AbstractInstaller that will add some goodies like Eventable trait

<?php

class CustomInstaller extends AbstractInstaller implements InstallerInterface {}