mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 20:13:28 +00:00
18 lines
408 B
PHP
Executable File
18 lines
408 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
namespace Alchemy\Docker\Plugins\Command;
|
|
|
|
require __DIR__.'/../../../vendor/autoload.php';
|
|
require __DIR__.'/SubCommand.php';
|
|
require __DIR__.'/InstallCommand.php';
|
|
require __DIR__.'/InitCommand.php';
|
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$application = new Application();
|
|
|
|
$application->add(new InstallCommand());
|
|
$application->add(new InitCommand());
|
|
|
|
$application->run();
|