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