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

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

use Symfony\Component\Console\Application;
use CrixuAMG\PriceCacheWarmer\Console\Commands\PublishMigrationCommand;

$app = new Application();
$app->add(new PublishMigrationCommand());
$app->run();
