44 lines
1.3 KiB
PHP
Executable File
44 lines
1.3 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
use PhpMyAdmin\Command\CacheWarmupCommand;
|
|
use PhpMyAdmin\Command\FixPoTwigCommand;
|
|
use PhpMyAdmin\Command\SetVersionCommand;
|
|
use PhpMyAdmin\Command\TwigLintCommand;
|
|
use PhpMyAdmin\Command\WriteGitRevisionCommand;
|
|
use PhpMyAdmin\Config;
|
|
use PhpMyAdmin\Container\ContainerBuilder;
|
|
use PhpMyAdmin\Dbal\DatabaseInterface;
|
|
use PhpMyAdmin\Tests\Stubs\DbiDummy;
|
|
use Symfony\Component\Console\Application;
|
|
|
|
if (! defined('ROOT_PATH')) {
|
|
define('ROOT_PATH', dirname(__DIR__) . DIRECTORY_SEPARATOR);
|
|
}
|
|
|
|
require_once ROOT_PATH . 'app/constants.php';
|
|
require_once AUTOLOAD_FILE;
|
|
|
|
if (! class_exists(Application::class)) {
|
|
echo 'Be sure to have dev-dependencies installed.' . PHP_EOL;
|
|
echo 'Command aborted.' . PHP_EOL;
|
|
exit(1);
|
|
}
|
|
|
|
$containerBuilder = ContainerBuilder::getContainer();
|
|
$cfg['environment'] = 'production';
|
|
$config = new Config();
|
|
$config->loadFromFile(CONFIG_FILE);
|
|
$config->set('environment', $cfg['environment']);
|
|
$dbi = DatabaseInterface::getInstanceForTest(new DbiDummy());
|
|
|
|
$application = new Application('phpMyAdmin Console Tool');
|
|
|
|
$application->add(new CacheWarmupCommand());
|
|
$application->add(new TwigLintCommand());
|
|
$application->add(new SetVersionCommand());
|
|
$application->add(new WriteGitRevisionCommand());
|
|
$application->add(new FixPoTwigCommand());
|
|
|
|
$application->run();
|