Adding support for commenting on Github diffs.

This commit is contained in:
Dan Cryer 2015-02-20 13:37:36 +00:00
commit dd58dd682f
13 changed files with 333 additions and 5 deletions

View file

@ -13,6 +13,7 @@ define('PHPCI_IS_CONSOLE', true);
require('bootstrap.php');
use PHPCI\Command\RunCommand;
use PHPCI\Command\RebuildCommand;
use PHPCI\Command\GenerateCommand;
use PHPCI\Command\UpdateCommand;
use PHPCI\Command\InstallCommand;
@ -25,6 +26,7 @@ use b8\Store\Factory;
$application = new Application();
$application->add(new RunCommand($loggerConfig->getFor('RunCommand')));
$application->add(new RebuildCommand($loggerConfig->getFor('RunCommand')));
$application->add(new InstallCommand);
$application->add(new UpdateCommand($loggerConfig->getFor('UpdateCommand')));
$application->add(new GenerateCommand);