Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

37
phpspec Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# phpspec
> A Behaviour Driven Development tool for PHP.
> More information: <https://phpspec.net>.
- Create a specification for a class:
`phpspec describe {{class_name}}`
- Run all specifications in the "spec" directory:
`phpspec run`
- Run a single specification:
`phpspec run {{path/to/class_specification_file}}`
- Run specifications using a specific configuration file:
`phpspec run -c {{path/to/configuration_file}}`
- Run specifications using a specific bootstrap file:
`phpspec run -b {{path/to/bootstrap_file}}`
- Disable code generation prompts:
`phpspec run --no-code-generation`
- Enable fake return values:
`phpspec run --fake`