mirror of
https://gitnet.fr/deblan/gist.git
synced 2021-08-14 08:30:49 +02:00
23 lines
647 B
PHP
Executable File
23 lines
647 B
PHP
Executable File
#!/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();
|