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

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

use Ector\Cli\Commands\MyCommand;
use Ector\Cli\Commands\MigrateMagentoCommand;
use Ector\Cli\Commands\MigratePrestashopCommand;
use Symfony\Component\Console\Application;

$application = new Application();

// Register your commands here
$application->add(new MigrateMagentoCommand());
$application->add(new MigratePrestashopCommand());

$application->run();
