Skip to content

Instantly share code, notes, and snippets.

@bvipul
Last active October 9, 2017 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bvipul/6b786fc0367d686189be379ffb5d077a to your computer and use it in GitHub Desktop.
Save bvipul/6b786fc0367d686189be379ffb5d077a to your computer and use it in GitHub Desktop.
composer file for phpspec dependencies
//For defining specTest Class using phpspec
//The Main Spec Class would be prompted to you when running below command
bin/phpspec describe primeFactors
//For running tests
bin/phpspec run
{
"require-dev": {
"phpspec/phpspec": "^4.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {"psr-0": {"": "src"}}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment