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

include $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php';

use Overtrue\PHPOpenCC\Console\BuildCommand;
use Symfony\Component\Console\Application;

$application = new Application("PHP OpenCC by @overtrue" );

$application->add(new BuildCommand());
$application->setDefaultCommand(BuildCommand::getDefaultName(), true);
$application->run();