Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
fix installer
Browse files Browse the repository at this point in the history
  • Loading branch information
leepercox committed Oct 25, 2020
1 parent c4db38b commit c80ffbd
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion install/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ public static function getSubscribedEvents()
];
}

public function deactivate(Composer $composer, IOInterface $io)
{
// Move along, nothing to see here
}

public function uninstall(Composer $composer, IOInterface $io)
{
// Move along, nothing to see here
}

public function activate(Composer $composer, IOInterface $io)
{
// Move along, nothing to see here
Expand Down Expand Up @@ -76,4 +86,4 @@ public static function install(Event $event)
$version = json_decode(file_get_contents($packageJsonFilename), true);
$output->write("<info>Wappalyzer Version: ".$version["_spec"]."</info>");
}
}
}

0 comments on commit c80ffbd

Please sign in to comment.