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.
 
 
 
 

17 lines
337 B

#!/usr/bin/env php
<?php
require dirname(__FILE__) . '/vendor/autoload.php';
use Movim\Bootstrap;
use Movim\Console\DaemonCommand;
use Symfony\Component\Console\Application;
$bootstrap = new Bootstrap;
$bootstrap->boot();
$daemon = new DaemonCommand;
$application = new Application;
$application->add($daemon);
$application->run();