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.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							389 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							18 lines
						
					
					
						
							389 B
						
					
					
				| #!/usr/bin/env php | |
|  | |
| <?php | |
| require dirname(__FILE__) . '/vendor/autoload.php'; | |
| 
 | |
| use Movim\Bootstrap; | |
| use Movim\Console\DaemonCommand; | |
| use Movim\Console\ConfigCommand; | |
| use Symfony\Component\Console\Application; | |
| 
 | |
| $bootstrap = new Bootstrap; | |
| $bootstrap->boot(); | |
| 
 | |
| $application = new Application; | |
| $application->add(new DaemonCommand); | |
| $application->add(new ConfigCommand); | |
| $application->run(); | |
| 
 |