mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
567 B
22 lines
567 B
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
require dirname(__FILE__) . '/vendor/autoload.php';
|
|
|
|
use Movim\Bootstrap;
|
|
use Movim\Console\DaemonCommand;
|
|
use Movim\Console\ConfigCommand;
|
|
use Movim\Console\EmojisToJsonCommand;
|
|
use Movim\Console\CompileLanguages;
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$bootstrap = new Bootstrap;
|
|
$bootstrap->boot($argv[1] == 'help');
|
|
|
|
$application = new Application;
|
|
$application->add(new ConfigCommand);
|
|
$application->add(new DaemonCommand);
|
|
$application->add(new EmojisToJsonCommand);
|
|
$application->add(new CompileLanguages);
|
|
$application->run();
|