You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
use Gist\Command\CreateCommand;
|
|
|
|
use Gist\Command\ListCommand;
|
|
|
|
use Gist\Command\UpdateCommand;
|
|
|
|
use Gist\Command\StatsCommand;
|
|
|
|
use Gist\Command\DeleteCommand;
|
|
|
|
use Gist\Command\UserCreateCommand;
|
|
|
|
use Gist\Command\Migration\UpgradeTo1p4p1Command;
|
|
|
|
|
|
|
|
$app = require __DIR__.'/bootstrap.php';
|
|
|
|
|
|
|
|
$app['console']->add(new CreateCommand());
|
|
|
|
$app['console']->add(new ListCommand());
|
|
|
|
$app['console']->add(new UpdateCommand());
|
|
|
|
$app['console']->add(new DeleteCommand());
|
|
|
|
$app['console']->add(new StatsCommand());
|
|
|
|
$app['console']->add(new UserCreateCommand());
|
|
|
|
$app['console']->add(new UpgradeTo1p4p1Command());
|
|
|
|
|
|
|
|
$app['console']->run();
|