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