HOME


5h-3LL 1.0
DIR: /opt/cpanel/ea-wappspector/vendor/clue/phar-composer/src
/opt/cpanel/ea-wappspector/vendor/clue/phar-composer/src/
Upload File:
Current File : /opt/cpanel/ea-wappspector/vendor/clue/phar-composer/src/App.php
<?php

namespace Clue\PharComposer;

use Symfony\Component\Console\Application as BaseApplication;

class App extends BaseApplication
{
    public function __construct()
    {
        parent::__construct('phar-composer', '@dev');

        $this->add(new Command\Build());
        $this->add(new Command\Search());
        $this->add(new Command\Install());

        $this->setDefaultCommand('search');
    }
}