Viewing file: ComposerPlugin.php (1005 B) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace UpdateHelper;
use Composer\Composer; use Composer\EventDispatcher\Event; use Composer\EventDispatcher\EventSubscriberInterface; use Composer\IO\IOInterface; use Composer\Plugin\PluginInterface;
class ComposerPlugin implements PluginInterface, EventSubscriberInterface { protected $io;
public function activate(Composer $composer, IOInterface $io) { $this->io = $io; }
public function deactivate(Composer $composer, IOInterface $io) { // Not needed }
public function uninstall(Composer $composer, IOInterface $io) { // Not needed }
public static function getSubscribedEvents() { return array( 'post-autoload-dump' => array( array('onAutoloadDump', 0), ), ); }
public function onAutoloadDump(Event $event) { if (!class_exists('UpdateHelper\\UpdateHelper')) { return; }
UpdateHelper::check($event); } }
|