![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/eloquent/composer-npm-bridge/src/ |
<?php namespace Eloquent\Composer\NpmBridge; use Composer\Composer; use Composer\EventDispatcher\EventSubscriberInterface; use Composer\IO\IOInterface; use Composer\Plugin\PluginInterface; use Composer\Script\Event; use Composer\Script\ScriptEvents; use Eloquent\Composer\NpmBridge\Exception\NpmCommandFailedException; /** * A Composer plugin to facilitate NPM integration. */ class NpmBridgePlugin implements PluginInterface, EventSubscriberInterface { /** * Construct a new Composer NPM bridge plugin. * * @param NpmBridgeFactory|null $bridgeFactory The bridge factory to use. */ public function __construct(NpmBridgeFactory $bridgeFactory = null) { if (null === $bridgeFactory) { $bridgeFactory = NpmBridgeFactory::create(); } $this->bridgeFactory = $bridgeFactory; } /** * Activate the plugin. * * @param Composer $composer The main Composer object. * @param IOInterface $io The i/o interface to use. */ public function activate(Composer $composer, IOInterface $io) { // preload classes to prevent errors when removing the plugin class_exists(NpmBridge::class); class_exists(NpmBridgeFactory::class); class_exists(NpmClient::class); class_exists(NpmBridge::class); class_exists(NpmVendorFinder::class); } /** * Get the event subscriber configuration for this plugin. * * @return array<string,string> The events to listen to, and their associated handlers. */ public static function getSubscribedEvents(): array { // Issue #18 - disable if ENV set if (!empty(getenv('COMPOSER_NPM_BRIDGE_DISABLE'))) { return []; } // Increased priority to ensure we run before custom installers which are usually default priority return [ ScriptEvents::POST_INSTALL_CMD => ['onPostInstallCmd', 1], ScriptEvents::POST_UPDATE_CMD => ['onPostUpdateCmd', 1], ]; } /** * Handle post install command events. * * @param Event $event The event to handle. * * @throws NpmNotFoundException If the npm executable cannot be located. * @throws NpmCommandFailedException If the operation fails. */ public function onPostInstallCmd(Event $event) { $this->bridgeFactory->createBridge($event->getIO()) ->install($event->getComposer(), $event->isDevMode()); } /** * Handle post update command events. * * @param Event $event The event to handle. * * @throws NpmNotFoundException If the npm executable cannot be located. * @throws NpmCommandFailedException If the operation fails. */ public function onPostUpdateCmd(Event $event) { $this->bridgeFactory->createBridge($event->getIO()) ->update($event->getComposer()); } private $bridgeFactory; /** * Remove any hooks from Composer * * This will be called when a plugin is deactivated before being * uninstalled, but also before it gets upgraded to a new version * so the old one can be deactivated and the new one activated. * * @param Composer $composer * @param IOInterface $io */ public function deactivate(Composer $composer, IOInterface $io) { } /** * Prepare the plugin to be uninstalled * * This will be called after deactivate. * * @param Composer $composer * @param IOInterface $io */ public function uninstall(Composer $composer, IOInterface $io) { } }