Skip to content

Instantly share code, notes, and snippets.

@thomasruiz
Created February 2, 2015 23:46
Show Gist options
  • Save thomasruiz/5378ead6c18f15dbf4fa to your computer and use it in GitHub Desktop.
Save thomasruiz/5378ead6c18f15dbf4fa to your computer and use it in GitHub Desktop.
public function addDependency($package, $version, $dev = false)
{
$devOption = $dev ? '--dev' : null;
$command = "composer require $devOption --prefer-dist $package";
$process = new Process($command);
$process->run(/* ... */);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment