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

if (file_exists(__DIR__ . '/vendor/autoload.php')) {

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

} else {

	require __DIR__ . '/../../autoload.php';
}

$application = new Symfony\Component\Console\Application('Laravel Workshop', '0.0.1');

$application->add(new \Bmartel\LaravelPackage\Console\GenerateCommand);

$application->run();