add CLI install command (more testing tbd)

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-06-01 14:05:18 +02:00
parent f3b277237e
commit d545e7e09d
5 changed files with 260 additions and 26 deletions

View File

@@ -32,6 +32,7 @@ use Froxlor\Cli\ConfigServices;
use Froxlor\Cli\PhpSessionclean;
use Froxlor\Cli\SwitchServerIp;
use Froxlor\Cli\UpdateCommand;
use Froxlor\Cli\InstallCommand;
use Froxlor\Froxlor;
// validate correct php version
@@ -53,4 +54,5 @@ $application->add(new ConfigServices());
$application->add(new PhpSessionclean());
$application->add(new SwitchServerIp());
$application->add(new UpdateCommand());
$application->add(new InstallCommand());
$application->run();