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

define('DISSECT_VERSION', '1.0.1');

require_once '/usr/share/php/Dissect/autoload.php';

if (!class_exists('Symfony\Component\Console\Application')) {
    die(
        'You must install the php-symfony-console package in order ' .
        'to use the command-line tool.' . PHP_EOL
    );
}

$app = new Dissect\Console\Application(DISSECT_VERSION);
$app->run();
