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

include $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php';

use Symfony\Component\Console\Application;
use Urisoft\ZipItCommand;

$application = new Application();
$application->add(new ZipItCommand());
$application->setDefaultCommand('zipit', true);
$application->run();
