#!/usr/bin/env php
<?php

set_time_limit(0);
require __DIR__.'/../vendor/autoload.php';
error_reporting(E_ERROR | E_PARSE);

use Symfony\Component\Console\Application;
use Syonix\LogViewer\Console\Command\LintCommand;

$app = new Application('Syonix Log Viewer CLI', '1.0.0');
$app->add(new LintCommand(__DIR__.'/config/config.yml'));
$app->run();
