1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 08:32:56 +00:00

Turn EventDispatcher into generic solution handling plugins as well

This commit is contained in:
Nils Adermann 2013-08-14 17:42:11 +02:00
parent 2f43e9aefb
commit 3960edd64e
17 changed files with 320 additions and 68 deletions

View file

@ -53,7 +53,7 @@ class PluginInstallerTest extends \PHPUnit_Framework_TestCase
$this->io = $this->getMock('Composer\IO\IOInterface');
$dispatcher = $this->getMockBuilder('Composer\Script\EventDispatcher')->disableOriginalConstructor()->getMock();
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')->disableOriginalConstructor()->getMock();
$this->autoloadGenerator = new AutoloadGenerator($dispatcher);
$this->composer = new Composer();