AOEpeople/StackFormation

View on GitHub
src/stackformation.php

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/env php
<?php

$i = 0;
do {
    $autoloader = __DIR__ . str_repeat('/..', $i) . '/vendor/autoload.php';
    $i++;
} while ($i < 6 && !is_file($autoloader));
require_once $autoloader;

use Symfony\Component\Console\Application;

$app = new Application('StackFormation', '@package_version@');

foreach (\StackFormation\CommandRegistry::getCommands() as $command) {
    $app->add($command);
}
foreach (\AwsInspector\CommandRegistry::getCommands() as $command) {
    $app->add($command);
}

$app->run();