* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Deployer; desc('Installing vendors'); task('deploy:vendors', function () { if (!commandExist('unzip')) { writeln('To speed up composer installation setup "unzip" command with PHP zip extension https://goo.gl/sxzFcD'); } run('cd {{release_path}} && {{bin/composer}} {{composer_options}}'); });