13 lines
366 B
PHP
Executable file
13 lines
366 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
use Codappix\WebsiteComparison\Command\CompareCommand;
|
|
use Codappix\WebsiteComparison\Command\CreateBaseCommand;
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$application = new Application();
|
|
$application->add(new CreateBaseCommand());
|
|
$application->add(new CompareCommand());
|
|
$application->run();
|