mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 01:36:14 +02:00
tea/Build/bin/console
2023-12-15 16:17:39 +01:00

14 lines
405 B
PHP

#!/usr/bin/env php
<?php
include_once __DIR__ . '/../../.Build/vendor/autoload.php';
use Symfony\Component\Console\Application;
use Symfony\Component\Translation\Command\XliffLintCommand;
use Symfony\Component\Yaml\Command\LintCommand;
$application = new Application();
$application->add(new XliffLintCommand(null, null, null, false));
$application->add(new LintCommand());
exit($application->run());