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.

18 lines
389 B

  1. #!/usr/bin/env php
  2. <?php
  3. require dirname(__FILE__) . '/vendor/autoload.php';
  4. use Movim\Bootstrap;
  5. use Movim\Console\DaemonCommand;
  6. use Movim\Console\ConfigCommand;
  7. use Symfony\Component\Console\Application;
  8. $bootstrap = new Bootstrap;
  9. $bootstrap->boot();
  10. $application = new Application;
  11. $application->add(new DaemonCommand);
  12. $application->add(new ConfigCommand);
  13. $application->run();