#!/usr/bin/env php
<?php
/**
 * Build Loco SDK from remote service description
 * Requires composer install --dev
 */

set_time_limit(0);

require_once __DIR__.'/../vendor/autoload.php';

$application = new Symfony\Component\Console\Application;

$application->add( new Loco\Dev\BuildCommand );

$application->setDefaultCommand('loco:build');

$application->run( new Symfony\Component\Console\Input\ArgvInput );
