13 lines
		
	
	
		
			325 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			325 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env php
 | |
| <?php
 | |
| require __DIR__.'/../vendor/autoload.php';
 | |
| 
 | |
| use Symfony\Component\Console\Application;
 | |
| use Aerex\BaikalStorage\Commands\CreateConfigFileCommand;
 | |
| 
 | |
| $application = new Application();
 | |
| 
 | |
| $application->add(new CreateConfigFileCommand());
 | |
| $application->setName('Baikal Storage Plugin');
 | |
| $application->run();
 |