
phpspec
List of commands for phpspec:
-
phpspec:tldr:0a7fa phpspec: Enable fake return values.$ phpspec run --faketry on your machineexplain this command
-
phpspec:tldr:0c256 phpspec: Disable code generation prompts.$ phpspec run --no-code-generationtry on your machineexplain this command
-
phpspec:tldr:12c08 phpspec: Create a specification for a class.$ phpspec describe ${class_name}try on your machineexplain this command
-
phpspec:tldr:22c9a phpspec: Run specifications using a specific configuration file.$ phpspec run -c ${path-to-configuration_file}try on your machineexplain this command
-
phpspec:tldr:48af6 phpspec: Run specifications using a specific bootstrap file.$ phpspec run -b ${path-to-bootstrap_file}try on your machineexplain this command
-
phpspec:tldr:53d57 phpspec: Run all specifications in the "spec" directory.$ phpspec runtry on your machineexplain this command
-
phpspec:tldr:8e160 phpspec: Run a single specification.$ phpspec run ${path-to-class_specification_file}try on your machineexplain this command