2018-08-29 10:07:39 +02:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
|
2018-09-03 10:37:23 +02:00
|
|
|
use Codappix\WebsiteComparison\Command\CompareCommand;
|
2018-08-29 10:07:39 +02:00
|
|
|
use Codappix\WebsiteComparison\Command\CreateBaseCommand;
|
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
|
|
|
|
$application = new Application();
|
|
|
|
$application->add(new CreateBaseCommand());
|
2018-09-03 10:37:23 +02:00
|
|
|
$application->add(new CompareCommand());
|
2018-08-29 10:07:39 +02:00
|
|
|
$application->run();
|