phpspec
TLDR
Run specifications
$ phpspec run
Describe new class$ phpspec describe [App\\ClassName]
Run specific spec$ phpspec run [spec/ClassSpec.php]
Verbose output$ phpspec run -v
Generate code$ phpspec run --no-interaction
SYNOPSIS
phpspec [command] [options]
DESCRIPTION
phpspec is PHP specification framework. Behavior-driven development tool.
The tool uses SpecBDD methodology. Design-first approach.
phpspec specifies behavior.
PARAMETERS
run [SPEC]
Run specifications.describe CLASS
Create new spec.-v
Verbose output.--no-interaction
Non-interactive mode.--help
Display help.
CAVEATS
Different from PHPUnit. Focused on design. Object-oriented.
HISTORY
PhpSpec was created for behavior-driven PHP development and design.


