2021-01-07 23:52:00 -06:00
|
|
|
#!/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());
|
2021-07-02 19:38:34 -05:00
|
|
|
$application->setName('Baikal Storage Plugin');
|
2021-01-07 23:52:00 -06:00
|
|
|
$application->run();
|