marcj/topsort.php

View on GitHub
bin/console

Summary

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

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

use MJS\TopSort\Command\BenchmarkCommand;
use Symfony\Component\Console\Application;

$application = new Application();
$application->add(new BenchmarkCommand);
$application->run();