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

if ( file_exists( __DIR__ . '/../../../autoload.php' ) ) {
    require __DIR__ . '/../../../autoload.php';
} else {
    require __DIR__ . '/../vendor/autoload.php';
}

$app = new Symfony\Component\Console\Application( 'Mantle Installer', '1.0.5' );
$app->add( new Mantle\Installer\Console\Install_Command() );

$app->run();
