1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 
<?php
    namespace Deliverist\Builder\Commands;
    use Deliverist\Builder\Builder;
    use Deliverist\Builder\InvalidStateException;
    use Deliverist\Builder\ICommand;
    class ComposerInstall implements ICommand
    {
        
        private $executable = 'composer';
        
        public function setExecutable($executable)
        {
            $this->executable = $executable;
            return $this;
        }
        
        public function run(Builder $builder, $file = 'composer.json')
        {
            $builder->log('Running `composer install`');
            
            $result = $builder->execute(array(
                $this->executable,
                'install',
                '--no-ansi',
                '--no-dev',
                '--no-interaction',
                '--no-progress',
                
                '--optimize-autoloader',
                '--prefer-dist',
            ), dirname($file));
            $builder->logDebug($result->toText());
            if (!$result->isOk()) {
                throw new InvalidStateException('Composer install failed.');
            }
        }
    }