11 lines
270 B
PHP
Executable file
11 lines
270 B
PHP
Executable file
#!/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();
|