2014-07-29 13:25:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Installer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Installer Events.
|
|
|
|
*
|
|
|
|
* @author François Pluchino <francois.pluchino@gmail.com>
|
|
|
|
*/
|
|
|
|
class InstallerEvents
|
|
|
|
{
|
|
|
|
/**
|
2014-09-30 15:26:55 +00:00
|
|
|
* The PRE_DEPENDENCIES_SOLVING event occurs as a installer begins
|
2014-07-29 13:25:16 +00:00
|
|
|
* resolve operations.
|
|
|
|
*
|
|
|
|
* The event listener method receives a
|
|
|
|
* Composer\Installer\InstallerEvent instance.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2014-09-30 15:26:55 +00:00
|
|
|
const PRE_DEPENDENCIES_SOLVING = 'pre-dependencies-solving';
|
2014-07-29 13:25:16 +00:00
|
|
|
|
|
|
|
/**
|
2014-09-30 15:26:55 +00:00
|
|
|
* The POST_DEPENDENCIES_SOLVING event occurs as a installer after
|
2014-07-29 13:25:16 +00:00
|
|
|
* resolve operations.
|
|
|
|
*
|
|
|
|
* The event listener method receives a
|
|
|
|
* Composer\Installer\InstallerEvent instance.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2014-09-30 15:26:55 +00:00
|
|
|
const POST_DEPENDENCIES_SOLVING = 'post-dependencies-solving';
|
2014-07-29 13:25:16 +00:00
|
|
|
}
|