#!/usr/bin/env php
<?php

set_time_limit(0);

require __DIR__.'/../vendor/autoload.php';

use Basilicom\ReleaseNotesBundle\Command\ConfluenceReleaseNotesPublisherCommand;
use Basilicom\ReleaseNotesBundle\Command\RocketChatReleaseNotesPublisherCommand;

use Symfony\Component\Console\Application;

$application = new Application('Git Release Notes Publisher', '1.0.4');

$confluencePublisherCommand = new ConfluenceReleaseNotesPublisherCommand(
    '',
    '',
    '',
    ''
);
$rocketChatPublisherCommand = new RocketChatReleaseNotesPublisherCommand(
        '',
        '',
        '',
        '',
        '',
    []
);

$application->add($confluencePublisherCommand);
$application->add($rocketChatPublisherCommand);

$application->run();
