/var/www/vhosts/ihelp.ro/httpdocs/vendor/composer/composer/src/Composer/Installer
NameSizeModeActions
BinaryInstaller.php142140644editdlrm
BinaryPresenceInterface.php7830644editdlrm
InstallationManager.php249580644editdlrm
InstallerEvent.php16990644editdlrm
InstallerEvents.php6670644editdlrm
InstallerInterface.php51780644editdlrm
LibraryInstaller.php112660644editdlrm
MetapackageInstaller.php33080644editdlrm
NoopInstaller.php28920644editdlrm
PackageEvent.php22740644editdlrm
PackageEvents.php20870644editdlrm
PluginInstaller.php45750644editdlrm
ProjectInstaller.php35400644editdlrm
SuggestedPackagesReporter.php83250644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/composer/composer/src/Composer/Installer/PackageEvents.php (2087B)
* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Installer; /** * Package Events. * * @author Jordi Boggiano */ class PackageEvents { /** * The PRE_PACKAGE_INSTALL event occurs before a package is installed. * * The event listener method receives a Composer\Installer\PackageEvent instance. * * @var string */ public const PRE_PACKAGE_INSTALL = 'pre-package-install'; /** * The POST_PACKAGE_INSTALL event occurs after a package is installed. * * The event listener method receives a Composer\Installer\PackageEvent instance. * * @var string */ public const POST_PACKAGE_INSTALL = 'post-package-install'; /** * The PRE_PACKAGE_UPDATE event occurs before a package is updated. * * The event listener method receives a Composer\Installer\PackageEvent instance. * * @var string */ public const PRE_PACKAGE_UPDATE = 'pre-package-update'; /** * The POST_PACKAGE_UPDATE event occurs after a package is updated. * * The event listener method receives a Composer\Installer\PackageEvent instance. * * @var string */ public const POST_PACKAGE_UPDATE = 'post-package-update'; /** * The PRE_PACKAGE_UNINSTALL event occurs before a package has been uninstalled. * * The event listener method receives a Composer\Installer\PackageEvent instance. * * @var string */ public const PRE_PACKAGE_UNINSTALL = 'pre-package-uninstall'; /** * The POST_PACKAGE_UNINSTALL event occurs after a package has been uninstalled. * * The event listener method receives a Composer\Installer\PackageEvent instance. * * @var string */ public const POST_PACKAGE_UNINSTALL = 'post-package-uninstall'; }