for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dock\Installer\System\Mac;
use Dock\Installer\SoftwareInstallTask;
class Homebrew extends SoftwareInstallTask
{
/**
* {@inheritdoc}
*/
public function getName()
return 'homebrew';
}
protected function getVersionCommand()
return 'brew --version';
protected function getInstallCommand()
return 'ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"';