Installing phpspec on OS X
phpspec is php toolset to drive emergent design by specification. For details please visit http://phpspec.net
cd ~/
If is there “wget” command in your system. (You can install via Brew (HomeBrew)).
wget -nc https://github.com/phpspec/phpspec/releases/download/3.2.2/phpspec.phar
or download via cURL
curl -OL https://github.com/phpspec/phpspec/releases/download/3.2.2/phpspec.phar
and then
sudo mv phpspec.phar /usr/local/bin/phpspec
sudo chmod +x /usr/local/bin/phpspec