File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 11/vendor
2+ .vagrant /
3+ .idea /
Original file line number Diff line number Diff line change @@ -606,7 +606,7 @@ private function buildQueryUrlParameter($query)
606606
607607 /**
608608 * Returns whether or not the last result was fetched from the cache.
609- *
609+ *
610610 * @return bool true if last result was fetched from cache, otherwise false.
611611 */
612612 public function wasCached ()
Original file line number Diff line number Diff line change 2525class CurlFetcher implements FetcherInterface
2626{
2727 /**
28- * @var array The Curl options to use.
28+ * @var array The Curl options to use.
2929 */
3030 private $ curlOptions ;
3131
3232 /**
3333 * Create a new CurlFetcher instance.
34- *
34+ *
3535 * @param array $curlOptions The Curl options to use. See http://php.net/manual/de/function.curl-setopt.php
3636 * for a list of available options.
3737 */
Original file line number Diff line number Diff line change 1+ # -*- mode: ruby -*-
2+ # vi: set ft=ruby :
3+
4+ Vagrant . configure ( 2 ) do |config |
5+ config . vm . box = "ubuntu/trusty64"
6+
7+ config . vm . provision "shell" , inline : <<-SHELL
8+ sudo apt-get update
9+ sudo apt-get install -y php5-cli
10+
11+ sudo curl --silent https://getcomposer.org/installer | php > /dev/null 2>&1
12+ sudo mv composer.phar /usr/local/bin/composer
13+ SHELL
14+ end
You can’t perform that action at this time.
0 commit comments